From 49dd928faac67f50e4358d7c1a1e8dbae121297b Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Fri, 8 Apr 2011 17:24:12 +0100 Subject: [PATCH] SEC-1712: Javadoc typo fix. --- .../springframework/security/web/util/RegexRequestMatcher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/main/java/org/springframework/security/web/util/RegexRequestMatcher.java b/web/src/main/java/org/springframework/security/web/util/RegexRequestMatcher.java index 08e74f52bc..e0f6a47d3e 100644 --- a/web/src/main/java/org/springframework/security/web/util/RegexRequestMatcher.java +++ b/web/src/main/java/org/springframework/security/web/util/RegexRequestMatcher.java @@ -15,7 +15,7 @@ import org.springframework.util.StringUtils; * Can also be configured to match a specific HTTP method. * * The match is performed against the {@code servletPath + pathInfo + queryString} of the request and is case-sensitive - * by default. Case-insensitive matching can be used by using the constructor which takes the {@code caseInsentitive} + * by default. Case-insensitive matching can be used by using the constructor which takes the {@code caseInsensitive} * argument. * * @author Luke Taylor