diff --git a/docs/en/docs/tutorial/query-params-str-validations.md b/docs/en/docs/tutorial/query-params-str-validations.md index 6762dc2220..8d77d73c30 100644 --- a/docs/en/docs/tutorial/query-params-str-validations.md +++ b/docs/en/docs/tutorial/query-params-str-validations.md @@ -390,7 +390,7 @@ But we are now declaring it with `Query`, for example like: ```Python q: Annotated[str | None, Query(min_length=3)] = None ``` - + === "Python 3.9+ Annotated" ```Python @@ -402,7 +402,7 @@ But we are now declaring it with `Query`, for example like: ```Python q: str | None = Query(default=None, min_length=3) ``` - + === "Python 3.9+ non-Annotated" ```Python