]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:pencil2: Fix typo in oauth2-jwt.md (#447)
authorPablo Marti <pablo@albanta.eu>
Fri, 30 Aug 2019 22:35:52 +0000 (23:35 +0100)
committerSebastián Ramírez <tiangolo@gmail.com>
Fri, 30 Aug 2019 22:35:52 +0000 (17:35 -0500)
docs/tutorial/security/oauth2-jwt.md

index 648e1e68c064845d14abde43ae07bfa22d92265f..a4be54e2086c5a74b58dbfe85f54c0eb9dd8c62e 100644 (file)
@@ -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`).