From: Ricardo Castro Date: Thu, 22 Jun 2023 11:42:48 +0000 (+0000) Subject: ✏️ Fix typo `Annotation` -> `Annotated` in `docs/en/docs/tutorial/query-params-str... X-Git-Tag: 0.98.0~47 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7c66ec8a8b47d16fefe9544c8d32b2de1ce7e314;p=thirdparty%2Ffastapi%2Ffastapi.git ✏️ Fix typo `Annotation` -> `Annotated` in `docs/en/docs/tutorial/query-params-str-validations.md` (#9625) Co-authored-by: Sebastián Ramírez --- diff --git a/docs/en/docs/tutorial/query-params-str-validations.md b/docs/en/docs/tutorial/query-params-str-validations.md index c4b221cb15..549e6c75b5 100644 --- a/docs/en/docs/tutorial/query-params-str-validations.md +++ b/docs/en/docs/tutorial/query-params-str-validations.md @@ -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.