This is an automated email from the ASF dual-hosted git repository.
lprimak pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/shiro.git
The following commit(s) were added to refs/heads/main by this push:
new 52892a079 chore: fix spelling / word casing in java docs (#2526)
52892a079 is described below
commit 52892a079ebb27289c97faf94ce1e3c15476eb20
Author: John Bampton <[email protected]>
AuthorDate: Mon Feb 9 08:24:01 2026 +1000
chore: fix spelling / word casing in java docs (#2526)
---
core/src/main/java/org/apache/shiro/realm/Realm.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/core/src/main/java/org/apache/shiro/realm/Realm.java
b/core/src/main/java/org/apache/shiro/realm/Realm.java
index 0a1430f46..54aa57bcd 100644
--- a/core/src/main/java/org/apache/shiro/realm/Realm.java
+++ b/core/src/main/java/org/apache/shiro/realm/Realm.java
@@ -91,14 +91,14 @@ public interface Realm {
*
* <p>This method effectively represents a login attempt for the
corresponding user with the underlying EIS datasource.
* Most implementations merely just need to lookup and return the account
data only (as the method name implies)
- * and let Shiro do the rest, but implementations may of course perform
eis specific login operations if so
+ * and let Shiro do the rest, but implementations may of course perform
EIS specific login operations if so
* desired.
*
* @param token the application-specific representation of an account
principal and credentials.
* @return the authentication information for the account associated with
the specified <tt>token</tt>,
* or <tt>null</tt> if no account could be found.
* @throws org.apache.shiro.authc.AuthenticationException if there is an
error obtaining or constructing
- * an
AuthenticationInfo objectbased on the specified <tt>token</tt>
+ * an
AuthenticationInfo object based on the specified <tt>token</tt>
* or
implementation-specific login behavior fails.
*/
AuthenticationInfo getAuthenticationInfo(AuthenticationToken token) throws
AuthenticationException;