From 3bf0f888ee1847f52b8c5a96e30a1c90ea0f36e9 Mon Sep 17 00:00:00 2001 From: David Brochart Date: Wed, 12 Jul 2023 09:33:54 +0200 Subject: [PATCH] Fix typo (#1248) --- docs/configuration/schemas.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/schemas.md b/docs/configuration/schemas.md index 3cb98e7a..87a3266e 100644 --- a/docs/configuration/schemas.md +++ b/docs/configuration/schemas.md @@ -2,7 +2,7 @@ FastAPI is heavily using [Pydantic models](https://pydantic-docs.helpmanual.io/) to validate request payloads and serialize responses. **FastAPI Users** is no exception and will expect you to provide Pydantic schemas representing a user when it's read, created and updated. -It's **different from your `User` model**, which is an object that actually interacts with the database. Those schemas on the other hand are here to validate data and serialize correct it in the API. +It's **different from your `User` model**, which is an object that actually interacts with the database. Those schemas on the other hand are here to validate data and correctly serialize it in the API. **FastAPI Users** provides a base structure to cover its needs. It is structured like this: