From: Petar Marić Date: Sat, 18 May 2024 00:48:03 +0000 (+0200) Subject: ✏️ Fix typo in `fastapi/applications.py` (#11593) X-Git-Tag: 0.111.1~136 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=817cc1d7548a508f80a346eb18889e29177ec03c;p=thirdparty%2Ffastapi%2Ffastapi.git ✏️ Fix typo in `fastapi/applications.py` (#11593) --- diff --git a/fastapi/applications.py b/fastapi/applications.py index 4446cacfb5..4f5e6f1d98 100644 --- a/fastapi/applications.py +++ b/fastapi/applications.py @@ -902,7 +902,7 @@ class FastAPI(Starlette): A state object for the application. This is the same object for the entire application, it doesn't change from request to request. - You normally woudln't use this in FastAPI, for most of the cases you + You normally wouldn't use this in FastAPI, for most of the cases you would instead use FastAPI dependencies. This is simply inherited from Starlette.