diff --git a/spring-test/src/main/java/org/springframework/test/context/junit/jupiter/SpringExtension.java b/spring-test/src/main/java/org/springframework/test/context/junit/jupiter/SpringExtension.java index 79869d8eb80..e9373a0026f 100644 --- a/spring-test/src/main/java/org/springframework/test/context/junit/jupiter/SpringExtension.java +++ b/spring-test/src/main/java/org/springframework/test/context/junit/jupiter/SpringExtension.java @@ -153,7 +153,7 @@ public class SpringExtension implements BeforeAllCallback, AfterAllCallback, Tes * Returns {@link ExtensionContextScope#TEST_METHOD ExtensionContextScope.TEST_METHOD}. *
This can be effectively overridden by annotating a test class with * {@code @SpringExtensionConfig(useTestClassScopedExtensionContext = true)}. - * See the {@link SpringExtension class-level Javadoc} for further details. + * See the {@linkplain SpringExtension class-level Javadoc} for further details. * @since 7.0 * @see SpringExtensionConfig#useTestClassScopedExtensionContext() */ @@ -391,7 +391,7 @@ public class SpringExtension implements BeforeAllCallback, AfterAllCallback, Tes /** - * Get the {@link ApplicationContext} associated with the supplied {@code ExtensionContext}. + * Get the {@link ApplicationContext} associated with the supplied {@link ExtensionContext}. * @param context the current {@code ExtensionContext} (never {@code null}) * @return the application context * @throws IllegalStateException if an error occurs while retrieving the application context @@ -402,7 +402,7 @@ public class SpringExtension implements BeforeAllCallback, AfterAllCallback, Tes } /** - * Get the {@link TestContextManager} associated with the supplied {@code ExtensionContext}. + * Get the {@link TestContextManager} associated with the supplied {@link ExtensionContext}. * @return the {@code TestContextManager} (never {@code null}) */ static TestContextManager getTestContextManager(ExtensionContext context) {