From: Omar Mokhtar Date: Fri, 19 Apr 2024 15:29:38 +0000 (+0200) Subject: ✏️ Fix typo in `security/http.py` (#11455) X-Git-Tag: 0.110.3~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ce1fb1a23bc62d033ac5852de66828e1f366a98b;p=thirdparty%2Ffastapi%2Ffastapi.git ✏️ Fix typo in `security/http.py` (#11455) --- diff --git a/fastapi/security/http.py b/fastapi/security/http.py index b45bee55c9..a142b135da 100644 --- a/fastapi/security/http.py +++ b/fastapi/security/http.py @@ -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