From 891d41c005d69f9016ccc35a52dc2e99c9da34a0 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sun, 31 May 2015 18:13:57 +0200 Subject: [PATCH] Fix typo in Javadoc --- .../java/org/springframework/web/cors/CorsConfiguration.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 6f837516639..a30dff93901 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 @@ -242,13 +242,12 @@ public class CorsConfiguration { } /** - * Return the configure maxAge value, possibly {@code null}. + * Return the configured maxAge value, possibly {@code null}. */ public Long getMaxAge() { return maxAge; } - /** * Check the origin of the request against the configured allowed origins. * @param requestOrigin the origin to check.