From 2c0a4337a8c8e45cddcbeb3c4179b1ef38d661da Mon Sep 17 00:00:00 2001 From: Tim te Beek Date: Sat, 9 Jul 2022 16:05:24 +0200 Subject: [PATCH] Clearly end sentence in note before next sentence --- .../ROOT/pages/servlet/authorization/method-security.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/servlet/authorization/method-security.adoc b/docs/modules/ROOT/pages/servlet/authorization/method-security.adoc index 18a4f2de6b..ba76f683e9 100644 --- a/docs/modules/ROOT/pages/servlet/authorization/method-security.adoc +++ b/docs/modules/ROOT/pages/servlet/authorization/method-security.adoc @@ -252,7 +252,7 @@ Method authorization is a combination of before- and after-method authorization. [NOTE] ==== Before-method authorization is performed before the method is invoked. -If that authorization denies access, the method is not invoked, and an `AccessDeniedException` is thrown +If that authorization denies access, the method is not invoked, and an `AccessDeniedException` is thrown. After-method authorization is performed after the method is invoked, but before the method returns to the caller. If that authorization denies access, the value is not returned, and an `AccessDeniedException` is thrown ====