diff --git a/core/src/main/java/org/acegisecurity/intercept/web/RegExpBasedFilterInvocationDefinitionMap.java b/core/src/main/java/org/acegisecurity/intercept/web/RegExpBasedFilterInvocationDefinitionMap.java
index 1ca1aa4a9c..e44adfffd5 100644
--- a/core/src/main/java/org/acegisecurity/intercept/web/RegExpBasedFilterInvocationDefinitionMap.java
+++ b/core/src/main/java/org/acegisecurity/intercept/web/RegExpBasedFilterInvocationDefinitionMap.java
@@ -34,10 +34,10 @@ import java.util.Vector;
/**
- * Maintains a List of ConfigAttributeDefinitions
+ * Maintains a List of ConfigAttributeDefinitions
* associated with different HTTP request URL regular expression patterns.
*
- *
+ *
* Regular expressions are used to match a HTTP request URL against a
* ConfigAttributeDefinition.
*
* The order of registering the regular expressions using the {@link * #addSecureUrl(String, ConfigAttributeDefinition)} is very important. The - * system will identify the first matching regular expression for a + * system will identify the first matching regular expression for a * given HTTP URL. It will not proceed to evaluate later regular expressions * if a match has already been found. Accordingly, the most specific regular * expressions should be registered first, with the most general regular * expressions registered last. *
* - *+ *
* If no registered regular expressions match the HTTP URL, null
* is returned.
*