Browse Source

📝 Fix grammar in tutorial/body.md

Changed "and that function parameters" to "and those function parameters" for better grammar and readability.
pull/14598/head
BLESSEDEFEM 7 months ago
committed by GitHub
parent
commit
6131f6870e
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs/en/docs/tutorial/body.md

2
docs/en/docs/tutorial/body.md

@ -132,7 +132,7 @@ Inside of the function, you can access all the attributes of the model object di
You can declare path parameters and request body at the same time. You can declare path parameters and request body at the same time.
**FastAPI** will recognize that the function parameters that match path parameters should be **taken from the path**, and that function parameters that are declared to be Pydantic models should be **taken from the request body**. **FastAPI** will recognize that the function parameters that match path parameters should be **taken from the path**, and those function parameters that are declared to be Pydantic models should be **taken from the request body**.
{* ../../docs_src/body/tutorial003_py310.py hl[15:16] *} {* ../../docs_src/body/tutorial003_py310.py hl[15:16] *}

Loading…
Cancel
Save