From c2f91765b401c2976fd802358e6453d0fad0d2fd Mon Sep 17 00:00:00 2001 From: DongHyuk Date: Wed, 28 Jul 2021 22:19:59 +0900 Subject: [PATCH] Fix typo in Javadoc in AbstractHandlerMapping Closes gh-27218 --- .../web/servlet/handler/AbstractHandlerMapping.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-webmvc/src/main/java/org/springframework/web/servlet/handler/AbstractHandlerMapping.java b/spring-webmvc/src/main/java/org/springframework/web/servlet/handler/AbstractHandlerMapping.java index 900b7881be9..d3336710f0c 100644 --- a/spring-webmvc/src/main/java/org/springframework/web/servlet/handler/AbstractHandlerMapping.java +++ b/spring-webmvc/src/main/java/org/springframework/web/servlet/handler/AbstractHandlerMapping.java @@ -276,7 +276,7 @@ public abstract class AbstractHandlerMapping extends WebApplicationObjectSupport * determines the {@code CorsConfiguration} to use which is then further * {@link CorsConfiguration#combine(CorsConfiguration) combined} with the * {@code CorsConfiguration} for the selected handler. - *

This is mutually exclusie with + *

This is mutually exclusive with * {@link #setCorsConfigurationSource(CorsConfigurationSource)}. * @since 4.2 * @see #setCorsProcessor(CorsProcessor) @@ -305,7 +305,7 @@ public abstract class AbstractHandlerMapping extends WebApplicationObjectSupport * {@code CorsConfiguration} determined by the source is * {@link CorsConfiguration#combine(CorsConfiguration) combined} with the * {@code CorsConfiguration} for the selected handler. - *

This is mutually exclusie with {@link #setCorsConfigurations(Map)}. + *

This is mutually exclusive with {@link #setCorsConfigurations(Map)}. * @since 5.1 * @see #setCorsProcessor(CorsProcessor) */