diff --git a/spring-test/src/main/java/org/springframework/test/context/TestPropertySource.java b/spring-test/src/main/java/org/springframework/test/context/TestPropertySource.java index 8eaba4136e6..e224bdbb281 100644 --- a/spring-test/src/main/java/org/springframework/test/context/TestPropertySource.java +++ b/spring-test/src/main/java/org/springframework/test/context/TestPropertySource.java @@ -173,13 +173,13 @@ public @interface TestPropertySource { * and {@code "extended.properties"} files as test property * source locations. *
-	 * @TestPropertySource("base.properties")
+	 * @TestPropertySource("base.properties")
 	 * @ContextConfiguration
 	 * public class BaseTest {
 	 *   // ...
 	 * }
 	 *
-	 * @TestPropertySource("extended.properties")
+	 * @TestPropertySource("extended.properties")
 	 * @ContextConfiguration
 	 * public class ExtendedTest extends BaseTest {
 	 *   // ...
@@ -250,12 +250,12 @@ public @interface TestPropertySource {
 	 * {@code ExtendedTest} will be loaded using the inlined {@code key1}
 	 * and {@code key2} properties.
 	 * 
-	 * @TestPropertySource(properties = "key1 = value1")
+	 * @TestPropertySource(properties = "key1 = value1")
 	 * @ContextConfiguration
 	 * public class BaseTest {
 	 *   // ...
 	 * }
-	 * @TestPropertySource(properties = "key2 = value2")
+	 * @TestPropertySource(properties = "key2 = value2")
 	 * @ContextConfiguration
 	 * public class ExtendedTest extends BaseTest {
 	 *   // ...