From 6131f6870e31f3efe72db4b51788b895a4ce2ac2 Mon Sep 17 00:00:00 2001 From: BLESSEDEFEM <138158649+BLESSEDEFEM@users.noreply.github.com> Date: Wed, 24 Dec 2025 21:28:44 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Fix=20grammar=20in=20tutorial/bo?= =?UTF-8?q?dy.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed "and that function parameters" to "and those function parameters" for better grammar and readability. --- docs/en/docs/tutorial/body.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] *}