]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏ Tweak wording in `docs/en/docs/advanced/dataclasses.md` (#3698)
authorPeter Fackeldey <peter.fackeldey@rwth-aachen.de>
Sun, 4 Sep 2022 13:37:47 +0000 (15:37 +0200)
committerGitHub <noreply@github.com>
Sun, 4 Sep 2022 13:37:47 +0000 (15:37 +0200)
docs/en/docs/advanced/dataclasses.md

index 80a063bb875a26da36231e1281f84c06a26658f5..72daca06ad9f77e84d1016e539cf648b6b01e77c 100644 (file)
@@ -8,7 +8,7 @@ But FastAPI also supports using <a href="https://docs.python.org/3/library/datac
 {!../../../docs_src/dataclasses/tutorial001.py!}
 ```
 
-This is still thanks to **Pydantic**, as it has <a href="https://pydantic-docs.helpmanual.io/usage/dataclasses/#use-of-stdlib-dataclasses-with-basemodel" class="external-link" target="_blank">internal support for `dataclasses`</a>.
+This is still supported thanks to **Pydantic**, as it has <a href="https://pydantic-docs.helpmanual.io/usage/dataclasses/#use-of-stdlib-dataclasses-with-basemodel" class="external-link" target="_blank">internal support for `dataclasses`</a>.
 
 So, even with the code above that doesn't use Pydantic explicitly, FastAPI is using Pydantic to convert those standard dataclasses to Pydantic's own flavor of dataclasses.