From 85e531ec74c361926265082a684fc2798cdd1e97 Mon Sep 17 00:00:00 2001 From: giger85 Date: Thu, 3 Feb 2022 18:58:25 +0900 Subject: [PATCH] Fix typo in role hierarchy docs Closes gh-10804 --- docs/modules/ROOT/pages/servlet/authorization/architecture.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/servlet/authorization/architecture.adoc b/docs/modules/ROOT/pages/servlet/authorization/architecture.adoc index 1e2f535386..ff77fad94b 100644 --- a/docs/modules/ROOT/pages/servlet/authorization/architecture.adoc +++ b/docs/modules/ROOT/pages/servlet/authorization/architecture.adoc @@ -201,7 +201,7 @@ AccessDecisionVoter hierarchyVoter() { hierarchy.setHierarchy("ROLE_ADMIN > ROLE_STAFF\n" + "ROLE_STAFF > ROLE_USER\n" + "ROLE_USER > ROLE_GUEST"); - return new RoleHierarcyVoter(hierarchy); + return new RoleHierarchyVoter(hierarchy); } ----