diff --git a/docs/en/docs/tutorial/body.md b/docs/en/docs/tutorial/body.md index 2d0dfcbb5..e96f5851d 100644 --- a/docs/en/docs/tutorial/body.md +++ b/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. -**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] *}