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-site.git
The following commit(s) were added to refs/heads/main by this push:
new 085e8edd6 misc: fix typos (#308)
085e8edd6 is described below
commit 085e8edd6dd329043123fe114170c7801b07a0fe
Author: John Bampton <[email protected]>
AuthorDate: Thu Jun 11 13:51:04 2026 +1000
misc: fix typos (#308)
---
src/site/assets/css/base.css | 2 +-
src/site/content/authorization.adoc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/site/assets/css/base.css b/src/site/assets/css/base.css
index ba79ecd63..9055cdb93 100644
--- a/src/site/assets/css/base.css
+++ b/src/site/assets/css/base.css
@@ -114,7 +114,7 @@ a:hover {
}
/** ======================================================= */
-/** Github Ribbon */
+/** GitHub Ribbon */
/** ======================================================= **/
.github-fork-ribbon.right-top:before {
diff --git a/src/site/content/authorization.adoc
b/src/site/content/authorization.adoc
index b6260d033..5e00e7f1a 100644
--- a/src/site/content/authorization.adoc
+++ b/src/site/content/authorization.adoc
@@ -320,7 +320,7 @@ There are few permission-oriented `Subject` assertion
methods you can call, depe
|Subject Method |Description
|link:static/current/apidocs/org/apache/shiro/subject/Subject.html#checkPermission(org.apache.shiro.authz.Permission)[`checkPermission(Permission
p)`] |Returns quietly if the `Subject` is permitted to perform an action or
access a resource summarized by the specified `Permission` instance, or throws
an `AuthorizationException` if not.
-|link:static/current/apidocs/org/apache/shiro/subject/Subject.html#checkPermission(java.lang.String)[`checkPermission(String
perm)`] |Returns quietly if the `Subject` is is permitted to perform an action
or access a resource summarized by the specified `String` permission, or throws
an `AuthorizationException` if not.
+|link:static/current/apidocs/org/apache/shiro/subject/Subject.html#checkPermission(java.lang.String)[`checkPermission(String
perm)`] |Returns quietly if the `Subject` is permitted to perform an action or
access a resource summarized by the specified `String` permission, or throws an
`AuthorizationException` if not.
|link:static/current/apidocs/org/apache/shiro/subject/Subject.html#checkPermissions(java.util.Collection)[`checkPermissions(Collection<Permission>
perms)`] |Returns quietly if the `Subject` is permitted _all_ the specified
permissions, or throws an `AuthorizationException` if not.
|link:++static/current/apidocs/org/apache/shiro/subject/Subject.html#checkPermissions(java.lang.String...)++[`checkPermissions(String...
perms)`] |Same effect as the `checkPermissions` method above, but using
`String`-based permissions.
|===