Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✏ Reword confusing sentence in docs file typo-fix-path-params-numeric-validations.md #3219

Merged
merged 2 commits into from Aug 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/en/docs/tutorial/path-params-numeric-validations.md
Expand Up @@ -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.
Expand Down