]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏️ Fix typo in `fastapi/applications.py` (#11593)
authorPetar Marić <petar.maric@gmail.com>
Sat, 18 May 2024 00:48:03 +0000 (02:48 +0200)
committerGitHub <noreply@github.com>
Sat, 18 May 2024 00:48:03 +0000 (19:48 -0500)
fastapi/applications.py

index 4446cacfb5d8764ab391c0548756b2be03e2faa2..4f5e6f1d98098c61a9453420ea40563caa2e5297 100644 (file)
@@ -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.