diff --git a/core/src/main/java/org/acegisecurity/ui/basicauth/BasicProcessingFilter.java b/core/src/main/java/org/acegisecurity/ui/basicauth/BasicProcessingFilter.java
index 37003f933f..fe1a55d00d 100644
--- a/core/src/main/java/org/acegisecurity/ui/basicauth/BasicProcessingFilter.java
+++ b/core/src/main/java/org/acegisecurity/ui/basicauth/BasicProcessingFilter.java
@@ -44,9 +44,9 @@ import javax.servlet.http.HttpServletResponse;
/**
* Processes a HTTP request's BASIC authorization headers, putting the result
- * into the ContextHolder
.
+ * into the SecurityContextHolder
.
*
- *
+ *
* For a detailed background on what this filter is designed to process, refer * to RFC 1945, Section * 11.1. Any realm name presented in the HTTP request is ignored. @@ -73,7 +73,7 @@ import javax.servlet.http.HttpServletResponse; * *
* If authentication is successful, the resulting {@link Authentication} object
- * will be placed into the ContextHolder
.
+ * will be placed into the SecurityContextHolder
.
*
@@ -82,7 +82,7 @@ import javax.servlet.http.HttpServletResponse; * which will prompt the user to authenticate again via BASIC authentication. *
* - *+ *
* Basic authentication is an attractive protocol because it is simple and * widely deployed. However, it still transmits a password in clear text and * as such is undesirable in many situations. Digest authentication is also @@ -91,8 +91,8 @@ import javax.servlet.http.HttpServletResponse; * net.sf.acegisecurity.ui.digestauth.DigestProcessingFilter}. *
* - *- * Do not use this class directly. Instead configure + *
+ * Do not use this class directly. Instead configure
* web.xml
to use the {@link
* net.sf.acegisecurity.util.FilterToBeanProxy}.
*