Browse Source

Fix typo in Javadoc in AbstractHandlerMapping

Closes gh-27218
pull/27223/head
DongHyuk 4 years ago committed by GitHub
parent
commit
c2f91765b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      spring-webmvc/src/main/java/org/springframework/web/servlet/handler/AbstractHandlerMapping.java

4
spring-webmvc/src/main/java/org/springframework/web/servlet/handler/AbstractHandlerMapping.java

@ -276,7 +276,7 @@ public abstract class AbstractHandlerMapping extends WebApplicationObjectSupport @@ -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.
* <p>This is mutually exclusie with
* <p>This is mutually exclusive with
* {@link #setCorsConfigurationSource(CorsConfigurationSource)}.
* @since 4.2
* @see #setCorsProcessor(CorsProcessor)
@ -305,7 +305,7 @@ public abstract class AbstractHandlerMapping extends WebApplicationObjectSupport @@ -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.
* <p>This is mutually exclusie with {@link #setCorsConfigurations(Map)}.
* <p>This is mutually exclusive with {@link #setCorsConfigurations(Map)}.
* @since 5.1
* @see #setCorsProcessor(CorsProcessor)
*/

Loading…
Cancel
Save