1
0
mirror of synced 2026-08-04 09:17:02 +00:00

Fix typo in role hierarchy docs

Closes gh-10804
This commit is contained in:
giger85
2022-02-03 18:58:25 +09:00
committed by Eleftheria Stein
parent 28b363551e
commit 85e531ec74
@@ -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);
}
----