From 8b3521d2bfc75c97a99da51444489decc32105ff Mon Sep 17 00:00:00 2001 From: Taehee Kim Date: Mon, 30 Mar 2020 21:00:25 +0900 Subject: [PATCH] Fix typo in webflux-cors.adoc Closes gh-24815 --- src/docs/asciidoc/web/webflux-cors.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/web/webflux-cors.adoc b/src/docs/asciidoc/web/webflux-cors.adoc index 7d48a60e7a..58cc23f17f 100644 --- a/src/docs/asciidoc/web/webflux-cors.adoc +++ b/src/docs/asciidoc/web/webflux-cors.adoc @@ -50,7 +50,7 @@ Each `HandlerMapping` can be {api-spring-framework}/web/reactive/handler/AbstractHandlerMapping.html#setCorsConfigurations-java.util.Map-[configured] individually with URL pattern-based `CorsConfiguration` mappings. In most cases, applications use the WebFlux Java configuration to declare such mappings, which results in a single, -global map passed to all `HadlerMappping` implementations. +global map passed to all `HandlerMapping` implementations. You can combine global CORS configuration at the `HandlerMapping` level with more fine-grained, handler-level CORS configuration. For example, annotated controllers can use