]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏ Fix typo: 'wll' to 'will' in `docs/en/docs/tutorial/query-params-str-validations...
authordasstyxx <79259281+dasstyxx@users.noreply.github.com>
Thu, 13 Apr 2023 18:21:17 +0000 (21:21 +0300)
committerGitHub <noreply@github.com>
Thu, 13 Apr 2023 18:21:17 +0000 (11:21 -0700)
docs/en/docs/tutorial/query-params-str-validations.md

index 6a5a507b91af852342892555032f14b77301cf20..2debd088a05997402397d0418b99e66112922c04 100644 (file)
@@ -110,7 +110,7 @@ Notice that the default value is still `None`, so the parameter is still optiona
 
 But now, having `Query(max_length=50)` inside of `Annotated`, we are telling FastAPI that we want it to extract this value from the query parameters (this would have been the default anyway 🤷) and that we want to have **additional validation** for this value (that's why we do this, to get the additional validation). 😎
 
-FastAPI wll now:
+FastAPI will now:
 
 * **Validate** the data making sure that the max length is 50 characters
 * Show a **clear error** for the client when the data is not valid