]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏️ Fix typo in `security/http.py` (#11455)
authorOmar Mokhtar <omokhtarm@gmail.com>
Fri, 19 Apr 2024 15:29:38 +0000 (17:29 +0200)
committerGitHub <noreply@github.com>
Fri, 19 Apr 2024 15:29:38 +0000 (10:29 -0500)
fastapi/security/http.py

index b45bee55c9b24ebf2c76140a03a028e76de6bb17..a142b135dabd5f48309619ed6134286e0865a48a 100644 (file)
@@ -15,7 +15,7 @@ from typing_extensions import Annotated, Doc
 
 class HTTPBasicCredentials(BaseModel):
     """
-    The HTTP Basic credendials given as the result of using `HTTPBasic` in a
+    The HTTP Basic credentials given as the result of using `HTTPBasic` in a
     dependency.
 
     Read more about it in the