]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏ Reword confusing sentence in docs file `typo-fix-path-params-numeric-validations...
authorCaleb Renfroe <35737053+ccrenfroe@users.noreply.github.com>
Wed, 24 Aug 2022 21:35:30 +0000 (17:35 -0400)
committerGitHub <noreply@github.com>
Wed, 24 Aug 2022 21:35:30 +0000 (21:35 +0000)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/en/docs/tutorial/path-params-numeric-validations.md

index 29235c6e2863b47265955a6818e45613809f5a51..4b2e3f973813d8a26664f3fcb40aac927da16d73 100644 (file)
@@ -122,9 +122,9 @@ And you can also declare numeric validations:
 * `le`: `l`ess than or `e`qual
 
 !!! info
-    `Query`, `Path`, and others you will see later are subclasses of a common `Param` class (that you don't need to use).
+    `Query`, `Path`, and other classes you will see later are subclasses of a common `Param` class.
 
-    And all of them share the same all these same parameters of additional validation and metadata you have seen.
+    All of them share the same parameters for additional validation and metadata you have seen.
 
 !!! note "Technical Details"
     When you import `Query`, `Path` and others from `fastapi`, they are actually functions.