diff --git a/core/src/main/java/org/acegisecurity/context/HttpSessionContextIntegrationFilter.java b/core/src/main/java/org/acegisecurity/context/HttpSessionContextIntegrationFilter.java
index c1ac55f949..ce1bf4d0cf 100644
--- a/core/src/main/java/org/acegisecurity/context/HttpSessionContextIntegrationFilter.java
+++ b/core/src/main/java/org/acegisecurity/context/HttpSessionContextIntegrationFilter.java
@@ -76,7 +76,7 @@ import javax.servlet.http.HttpSession;
* similar clients that will never present the same jsessionid
* etc), the {@link #setAllowSessionCreation(boolean)} should be set to
* false
. Only do this if you really need to conserve server
- * memory and are sure ensure all classes using the ContextHolder
+ * memory and ensure all classes using the ContextHolder
* are designed to have no persistence of the Context
between web
* requests.
*
* This filter MUST be executed BEFORE any authentication procesing mechanisms.
* Authentication processing mechanisms (eg BASIC, CAS processing filters etc)
- * expect the ContextHolder
to be contain a valid
+ * expect the ContextHolder
to contain a valid
* SecureContext
by the time they execute.
*