diff --git a/docs/en/docs/tutorial/response-model.md b/docs/en/docs/tutorial/response-model.md index 0f46239a3..81dd65eca 100644 --- a/docs/en/docs/tutorial/response-model.md +++ b/docs/en/docs/tutorial/response-model.md @@ -252,7 +252,7 @@ So, if you send a request to that *path operation* for the item with ID `foo`, t /// info -Depending on the installed version, FastAPI uses Pydantic model's `.dict()` (v1) (v1) or `model_dump` (v2) with the `exclude_unset` parameter to achieve this. +Depending on the installed version, FastAPI uses Pydantic model's `.dict()` (v1) (v1) or `.model_dump()` (v2) with the `exclude_unset` parameter to achieve this. ///