From 1b4d4256c433a7f7e51516dc06ba1fe4be36bd0d Mon Sep 17 00:00:00 2001
From: Antoine Rey
Date: Thu, 18 Jun 2015 18:28:31 +0200
Subject: [PATCH] Fix typo into javadoc
---
.../samples/petclinic/service/AbstractClinicServiceTests.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/java/org/springframework/samples/petclinic/service/AbstractClinicServiceTests.java b/src/test/java/org/springframework/samples/petclinic/service/AbstractClinicServiceTests.java
index 61ed54571..428c285fd 100644
--- a/src/test/java/org/springframework/samples/petclinic/service/AbstractClinicServiceTests.java
+++ b/src/test/java/org/springframework/samples/petclinic/service/AbstractClinicServiceTests.java
@@ -38,7 +38,7 @@ import org.springframework.transaction.annotation.Transactional;
* TestContext Framework:
- Spring IoC container caching which spares us unnecessary set up
* time between test execution.
- Dependency Injection of test fixture instances, meaning that
* we don't need to perform application context lookups. See the use of {@link Autowired @Autowired} on the
{@link
- * AbstractclinicServiceTests#clinicService clinicService}
instance variable, which uses autowiring by
+ * AbstractClinicServiceTests#clinicService clinicService} instance variable, which uses autowiring by
* type. - Transaction management, meaning each test method is executed in its own transaction,
* which is automatically rolled back by default. Thus, even if tests insert or otherwise change database state, there
* is no need for a teardown or cleanup script.
- An {@link org.springframework.context.ApplicationContext