From 8c499cb10b95c29eb1b2f0e46d3dbb33c40488a4 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Sun, 26 Nov 2017 17:56:35 +0100 Subject: [PATCH] Polishing --- .../servlet/config/annotation/WebMvcConfigurationSupport.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-webmvc/src/main/java/org/springframework/web/servlet/config/annotation/WebMvcConfigurationSupport.java b/spring-webmvc/src/main/java/org/springframework/web/servlet/config/annotation/WebMvcConfigurationSupport.java index 78d46911ce..61b4f5a2c3 100644 --- a/spring-webmvc/src/main/java/org/springframework/web/servlet/config/annotation/WebMvcConfigurationSupport.java +++ b/spring-webmvc/src/main/java/org/springframework/web/servlet/config/annotation/WebMvcConfigurationSupport.java @@ -103,9 +103,9 @@ import org.springframework.web.util.UrlPathHelper; * It is typically imported by adding {@link EnableWebMvc @EnableWebMvc} to an * application {@link Configuration @Configuration} class. An alternative more * advanced option is to extend directly from this class and override methods as - * necessary remembering to add {@link Configuration @Configuration} to the + * necessary, remembering to add {@link Configuration @Configuration} to the * subclass and {@link Bean @Bean} to overridden {@link Bean @Bean} methods. - * For more details see the Javadoc of {@link EnableWebMvc @EnableWebMvc}. + * For more details see the javadoc of {@link EnableWebMvc @EnableWebMvc}. * *

This class registers the following {@link HandlerMapping}s:

*