From 53f1656f56d34b53dca7186824da8a622adcab65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A1=B0=ED=98=95=EC=A4=80?= Date: Mon, 23 Feb 2026 00:14:45 +0900 Subject: [PATCH] Fix typo in CorsConfiguration Javadoc Closes gh-36366 Signed-off-by: jun --- .../java/org/springframework/web/cors/CorsConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-web/src/main/java/org/springframework/web/cors/CorsConfiguration.java b/spring-web/src/main/java/org/springframework/web/cors/CorsConfiguration.java index a6bbd0b6895..f3864c6a2df 100644 --- a/spring-web/src/main/java/org/springframework/web/cors/CorsConfiguration.java +++ b/spring-web/src/main/java/org/springframework/web/cors/CorsConfiguration.java @@ -189,7 +189,7 @@ public class CorsConfiguration { * domain1.com on port 8080 or port 8081 *
  • {@literal https://*.domain1.com:[*]} -- domains ending with * domain1.com on any port, including the default port - *
  • comma-delimited list of patters, for example, + *
  • comma-delimited list of patterns, for example, * {@code "https://*.a1.com,https://*.a2.com"}; this is convenient when a * value is resolved through a property placeholder, for example, {@code "${origin}"}; * note that such placeholders must be resolved externally.