]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏ Fix typo in `docs/en/docs/tutorial/path-params-numeric-validations.md` (#9282)
authorAadarsha Shrestha <aadarsh977@users.noreply.github.com>
Thu, 13 Apr 2023 18:28:52 +0000 (00:13 +0545)
committerGitHub <noreply@github.com>
Thu, 13 Apr 2023 18:28:52 +0000 (11:28 -0700)
docs/en/docs/tutorial/path-params-numeric-validations.md

index 70ba5ac509e2fc293af389d67ae6c1cd9b09bc58..433e3c134054840f1971898359d9bebcf9499fd9 100644 (file)
@@ -159,7 +159,7 @@ Python won't do anything with that `*`, but it will know that all the following
 
 ### Better with `Annotated`
 
-Have in mind that if you use `Annotated`, as you are not using function parameter default values, you won't have this problem, and yo probably won't need to use `*`.
+Have in mind that if you use `Annotated`, as you are not using function parameter default values, you won't have this problem, and you probably won't need to use `*`.
 
 === "Python 3.9+"