]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏️ Fix typo `Annotation` -> `Annotated` in `docs/en/docs/tutorial/query-params-str...
authorRicardo Castro <mccricardo@users.noreply.github.com>
Thu, 22 Jun 2023 11:42:48 +0000 (11:42 +0000)
committerGitHub <noreply@github.com>
Thu, 22 Jun 2023 11:42:48 +0000 (11:42 +0000)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/en/docs/tutorial/query-params-str-validations.md

index c4b221cb15b697407e37827cab98f6cba153e8e1..549e6c75b58a1ae0215c250723a0c0cf4dfbd06a 100644 (file)
@@ -44,7 +44,7 @@ To achieve that, first import:
 
 === "Python 3.6+"
 
-    In versions of Python below Python 3.9 you import `Annotation` from `typing_extensions`.
+    In versions of Python below Python 3.9 you import `Annotated` from `typing_extensions`.
 
     It will already be installed with FastAPI.