From 8c2a39b5afbdab3a39165649ba9429ea1a4d8d39 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 15 Aug 2023 17:54:12 +0200 Subject: [PATCH] Simplify Javadoc --- .../springframework/test/context/TestPropertySource.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 {
 	 *   // ...