Skip to content

Commit 52892a0

Browse files
authored
chore: fix spelling / word casing in java docs (#2526)
1 parent 51fb536 commit 52892a0

File tree

1 file changed

+2
-2
lines changed
  • core/src/main/java/org/apache/shiro/realm

1 file changed

+2
-2
lines changed

core/src/main/java/org/apache/shiro/realm/Realm.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,14 @@ public interface Realm {
9191
*
9292
* <p>This method effectively represents a login attempt for the corresponding user with the underlying EIS datasource.
9393
* Most implementations merely just need to lookup and return the account data only (as the method name implies)
94-
* and let Shiro do the rest, but implementations may of course perform eis specific login operations if so
94+
* and let Shiro do the rest, but implementations may of course perform EIS specific login operations if so
9595
* desired.
9696
*
9797
* @param token the application-specific representation of an account principal and credentials.
9898
* @return the authentication information for the account associated with the specified <tt>token</tt>,
9999
* or <tt>null</tt> if no account could be found.
100100
* @throws org.apache.shiro.authc.AuthenticationException if there is an error obtaining or constructing
101-
* an AuthenticationInfo objectbased on the specified <tt>token</tt>
101+
* an AuthenticationInfo object based on the specified <tt>token</tt>
102102
* or implementation-specific login behavior fails.
103103
*/
104104
AuthenticationInfo getAuthenticationInfo(AuthenticationToken token) throws AuthenticationException;

0 commit comments

Comments
 (0)