From 44fad21363bef1b06422be28c9bbfadde5e44804 Mon Sep 17 00:00:00 2001 From: Sadid Shaikh Date: Sun, 29 Oct 2023 13:39:10 +0530 Subject: [PATCH] Fix typo in method-security.adoc Fixed typo by changing 'please' to 'place' --- .../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 83e840d326..e7a2d2e5ae 100644 --- a/docs/modules/ROOT/pages/servlet/authorization/method-security.adoc +++ b/docs/modules/ROOT/pages/servlet/authorization/method-security.adoc @@ -140,7 +140,7 @@ In other words, for an invocation to be authorized, all annotation inspections n === Repeated Annotations Are Not Supported That said, it is not supported to repeat the same annotation on the same method. -For example, you cannot please `@PreAuthorize` twice on the same method. +For example, you cannot place `@PreAuthorize` twice on the same method. Instead, use SpEL's boolean support or its support for delegating to a separate bean.