From: Aadarsha Shrestha Date: Thu, 13 Apr 2023 18:28:52 +0000 (+0545) Subject: ✏ Fix typo in `docs/en/docs/tutorial/path-params-numeric-validations.md` (#9282) X-Git-Tag: 0.95.1~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ca7c5c29dd8eb1a2aaccd219801a98d857e864a;p=thirdparty%2Ffastapi%2Ffastapi.git ✏ Fix typo in `docs/en/docs/tutorial/path-params-numeric-validations.md` (#9282) --- diff --git a/docs/en/docs/tutorial/path-params-numeric-validations.md b/docs/en/docs/tutorial/path-params-numeric-validations.md index 70ba5ac509..433e3c1340 100644 --- a/docs/en/docs/tutorial/path-params-numeric-validations.md +++ b/docs/en/docs/tutorial/path-params-numeric-validations.md @@ -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+"