From 1ed5aa23e6ad1a7ded8d01f196fea4d68bac2b72 Mon Sep 17 00:00:00 2001 From: Pablo Marti Date: Fri, 30 Aug 2019 23:35:52 +0100 Subject: [PATCH] :pencil2: Fix typo in oauth2-jwt.md (#447) --- docs/tutorial/security/oauth2-jwt.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/security/oauth2-jwt.md b/docs/tutorial/security/oauth2-jwt.md index 648e1e68c..a4be54e20 100644 --- a/docs/tutorial/security/oauth2-jwt.md +++ b/docs/tutorial/security/oauth2-jwt.md @@ -156,7 +156,7 @@ Then you could add permissions about that entity, like "drive" (for the car) or And then, you could give that JWT token to a user (or bot), and he could use it to perform those actions (drive the car, or edit the blog post) without even needing to have an account, just with the JWT token your API generated for that. -Using these ideas, JWT can be used for way more sophisticate scenarios. +Using these ideas, JWT can be used for way more sophisticated scenarios. In those cases, several of those entities could have the same ID, let's say `foo` (a user `foo`, a car `foo`, and a blog post `foo`).