diff --git a/core/src/main/java/org/springframework/security/authentication/AuthenticationProvider.java b/core/src/main/java/org/springframework/security/authentication/AuthenticationProvider.java index 86e4c6e27ed..1659bcf3751 100644 --- a/core/src/main/java/org/springframework/security/authentication/AuthenticationProvider.java +++ b/core/src/main/java/org/springframework/security/authentication/AuthenticationProvider.java @@ -47,10 +47,10 @@ public interface AuthenticationProvider { *

* Returning true does not guarantee an * AuthenticationProvider will be able to authenticate the presented - * instance of the Authentication class. It simply indicates it can - * support closer evaluation of it. An AuthenticationProvider can still - * return null from the {@link #authenticate(Authentication)} method to - * indicate another AuthenticationProvider should be tried. + * Authentication object. It simply indicates it can support closer + * evaluation of it. An AuthenticationProvider can still return + * null from the {@link #authenticate(Authentication)} method to indicate + * another AuthenticationProvider should be tried. *

*

* Selection of an AuthenticationProvider capable of performing