]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏️ Fix typo in `docs/en/docs/reference/dependencies.md` (#10465)
authorSurav Shrestha <98219089+suravshresth@users.noreply.github.com>
Fri, 20 Oct 2023 08:58:51 +0000 (14:43 +0545)
committerGitHub <noreply@github.com>
Fri, 20 Oct 2023 08:58:51 +0000 (12:58 +0400)
docs/en/docs/reference/dependencies.md

index 95cd101e41f452cdc45126124ae930d4ae8bc01b..0999682679a7e9165f2d06313d5e09f0370c394c 100644 (file)
@@ -18,7 +18,7 @@ from fastapi import Depends
 ## `Security()`
 
 For many scenarios, you can handle security (authorization, authentication, etc.) with
-dependendencies, using `Depends()`.
+dependencies, using `Depends()`.
 
 But when you want to also declare OAuth2 scopes, you can use `Security()` instead of
 `Depends()`.