]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏️ Fix link to Pydantic docs in `docs/en/docs/tutorial/extra-data-types.md` (#10155)
authorHasnat Sajid <86589885+hasnatsajid@users.noreply.github.com>
Sat, 2 Sep 2023 15:55:41 +0000 (20:55 +0500)
committerGitHub <noreply@github.com>
Sat, 2 Sep 2023 15:55:41 +0000 (17:55 +0200)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/en/docs/tutorial/extra-data-types.md

index 7d6ffbc780cb0667eac42ce9eeebb21c84e569cc..b34ccd26f4c1c999fedd220c81c731bd193ffa58 100644 (file)
@@ -49,7 +49,7 @@ Here are some of the additional data types you can use:
 * `Decimal`:
     * Standard Python `Decimal`.
     * In requests and responses, handled the same as a `float`.
-* You can check all the valid pydantic data types here: <a href="https://pydantic-docs.helpmanual.io/usage/types" class="external-link" target="_blank">Pydantic data types</a>.
+* You can check all the valid pydantic data types here: <a href="https://docs.pydantic.dev/latest/usage/types/types/" class="external-link" target="_blank">Pydantic data types</a>.
 
 ## Example