From 6d7bf8050fe710c5253e6032233021d5e025e1d5 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Wed, 10 Apr 2019 13:15:16 +0200 Subject: [PATCH] Polishing --- .../springframework/web/bind/annotation/RequestMapping.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java b/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java index accd88bd89..2a2d75e7dd 100644 --- a/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java +++ b/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java @@ -95,7 +95,7 @@ public @interface RequestMapping { * When used at the type level, all method-level mappings inherit * this primary mapping, narrowing it for a specific handler method. *

NOTE: A handler method that is not mapped to any path - * explicitly, is effectively mapped to an empty path. + * explicitly is effectively mapped to an empty path. */ @AliasFor("path") String[] value() default {}; @@ -110,7 +110,7 @@ public @interface RequestMapping { * When used at the type level, all method-level mappings inherit * this primary mapping, narrowing it for a specific handler method. *

NOTE: A handler method that is not mapped to any path - * explicitly, is effectively mapped to an empty path. + * explicitly is effectively mapped to an empty path. * @since 4.2 */ @AliasFor("value") -- GitLab