From f3a6d030765283481383ab30d13439a5f0a1432e Mon Sep 17 00:00:00 2001 From: Sergey Beryozkin Date: Tue, 26 Sep 2023 21:54:06 +0100 Subject: [PATCH] Update docs/src/main/asciidoc/security-oidc-auth0-tutorial.adoc Co-authored-by: Michelle Purcell <92924207+michelle-purcell@users.noreply.github.com> --- docs/src/main/asciidoc/security-oidc-auth0-tutorial.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/security-oidc-auth0-tutorial.adoc b/docs/src/main/asciidoc/security-oidc-auth0-tutorial.adoc index 855924acb1cc88..41c3154a927eaf 100644 --- a/docs/src/main/asciidoc/security-oidc-auth0-tutorial.adoc +++ b/docs/src/main/asciidoc/security-oidc-auth0-tutorial.adoc @@ -61,7 +61,7 @@ public class GreetingResource { } ---- -Now request that only authenticated users can access the `hello()` method and update it to return the current user's name instead: +Update the Quarkus application code so that only authenticated users can access the `hello()` method and update it to return the current username instead, as shown in the following example: [source,java] ----