diff --git a/docs/manual/src/docbook/basic-and-digest-auth.xml b/docs/manual/src/docbook/basic-and-digest-auth.xml
index 9186d7c4a8..0bf9b5633b 100644
--- a/docs/manual/src/docbook/basic-and-digest-auth.xml
+++ b/docs/manual/src/docbook/basic-and-digest-auth.xml
@@ -138,11 +138,11 @@
The configured UserDetailsService is needed because
DigestAuthenticationFilter must have direct access to the clear
text password of a user. Digest Authentication will NOT work if you are using
- encoded passwords in your DAO It is possible to encode the password in the
+ encoded passwords in your DAO It is possible to encode the password in the
format HEX( MD5(username:realm:password) ) provided the
DigestAuthenticationFilter.passwordAlreadyEncoded is set to true.
- However, other password encodings will not work with digest authentication.. The DAO
- collaborator, along with the UserCache, are typically shared directly
+ However, other password encodings will not work with digest authentication..
+ The DAO collaborator, along with the UserCache, are typically shared directly
with a DaoAuthenticationProvider. The
authenticationEntryPoint property must be
DigestAuthenticationEntryPoint, so that