From 58543d88beb8b0a594305e65c42ea68fad18caa2 Mon Sep 17 00:00:00 2001 From: Habin Song <83588265+boulce@users.noreply.github.com> Date: Wed, 7 Feb 2024 16:41:21 +0900 Subject: [PATCH] Typo: Update authorize-http-requests.adoc 'patters' -> 'pattern --- .../pages/servlet/authorization/authorize-http-requests.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc b/docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc index efc29212f51..394b8f7aa1e 100644 --- a/docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc +++ b/docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc @@ -805,7 +805,7 @@ Xml:: ---- ====== -<1> We specified a URL patters that any user can access. +<1> We specified a URL pattern that any user can access. Specifically, any user can access a request if the URL starts with "/static/". <2> Any URL that starts with "/admin/" will be restricted to users who have the role "ROLE_ADMIN". You will notice that since we are invoking the `hasRole` method we do not need to specify the "ROLE_" prefix.