]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
📝 Fix minor typo (#12026)
authorMicael Jarniac <micael@jarniac.com>
Fri, 16 Aug 2024 00:04:55 +0000 (21:04 -0300)
committerGitHub <noreply@github.com>
Fri, 16 Aug 2024 00:04:55 +0000 (19:04 -0500)
docs/en/docs/advanced/security/oauth2-scopes.md

index 48798ebac29027e12e75ae00a98c85144000c025..ff52d7bb80d0b8ab7c37713de070e8fd8126081f 100644 (file)
@@ -398,7 +398,7 @@ Now update the dependency `get_current_user`.
 
 This is the one used by the dependencies above.
 
-Here's were we are using the same OAuth2 scheme we created before, declaring it as a dependency: `oauth2_scheme`.
+Here's where we are using the same OAuth2 scheme we created before, declaring it as a dependency: `oauth2_scheme`.
 
 Because this dependency function doesn't have any scope requirements itself, we can use `Depends` with `oauth2_scheme`, we don't have to use `Security` when we don't need to specify security scopes.