From 4488715e827012e6ba57148a5b83dc6376b80b36 Mon Sep 17 00:00:00 2001 From: Alexis Aguilar <98043211+alexisintech@users.noreply.github.com> Date: Mon, 2 Dec 2024 10:45:34 -0500 Subject: [PATCH] Update docs/backend-requests/handling/manual-jwt.mdx Co-authored-by: victoria --- docs/backend-requests/handling/manual-jwt.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/backend-requests/handling/manual-jwt.mdx b/docs/backend-requests/handling/manual-jwt.mdx index 227e00ef61..e8e86bd58d 100644 --- a/docs/backend-requests/handling/manual-jwt.mdx +++ b/docs/backend-requests/handling/manual-jwt.mdx @@ -40,7 +40,7 @@ The following example uses the `authenticateRequest()` method to verify the sess ### Finished - If the above process is successful, it means that the user is signed in to your application and you can consider them authenticated. You can also retrieve the session ID and user ID out of the token's claims. + If the above process succeeds, the user is considered signed in to your application and authenticated. You can also retrieve the session ID and user ID from of the token's claims. ### Example