Browse Source

Fix AuthorizationManager API Documentation Typo

Closes gh-15704
Josh Cummings 11 tháng trước cách đây
mục cha
commit
1a0203ecf6

+ 1 - 1
docs/modules/ROOT/pages/servlet/authorization/architecture.adoc

@@ -101,7 +101,7 @@ The `AuthorizationManager` interface contains two methods:
 ----
 AuthorizationDecision check(Supplier<Authentication> authentication, Object secureObject);
 
-default AuthorizationDecision verify(Supplier<Authentication> authentication, Object secureObject)
+default void verify(Supplier<Authentication> authentication, Object secureObject)
         throws AccessDeniedException {
     // ...
 }