From 6e9dcc3259de5c1039c7b6dca6de2fcc915ceebd Mon Sep 17 00:00:00 2001 From: Savva Surenkov Date: Sat, 30 Mar 2024 19:50:45 +0400 Subject: [PATCH] Update README Fix a typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4f92714..288af4c 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ class Bar(pydantic.BaseModel): slug: str = "foo_bar" ``` -**Pydantic v2 specific**: this behaviour is achieved by the fact that the exact type resolution will be postponed the until initial access to the field. Usually this happens on the first instantiation of the model. +**Pydantic v2 specific**: this behaviour is achieved by the fact that the exact type resolution will be postponed until the initial access to the field. Usually this happens on the first instantiation of the model. To reduce the number of runtime errors related to the postponed resolution, the field itself performs a few checks against the passed schema during `./manage.py check` command invocation, and consequently, in `runserver` and `makemigrations` commands.