浏览代码

SEC-1712: Javadoc typo fix.

Luke Taylor 14 年之前
父节点
当前提交
49dd928faa
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      web/src/main/java/org/springframework/security/web/util/RegexRequestMatcher.java

+ 1 - 1
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