From 1eee9c096d23d9cf32974145b3e746735956b3e6 Mon Sep 17 00:00:00 2001 From: lkkmpn Date: Mon, 9 Mar 2026 10:03:13 +0100 Subject: [PATCH] Update pydantic docs url Co-authored-by: Motov Yurii <109919500+YuriiMotov@users.noreply.github.com> --- docs/en/docs/tutorial/extra-models.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/docs/tutorial/extra-models.md b/docs/en/docs/tutorial/extra-models.md index f186cdca5..e1ab50410 100644 --- a/docs/en/docs/tutorial/extra-models.md +++ b/docs/en/docs/tutorial/extra-models.md @@ -166,7 +166,7 @@ To do that, use the standard Python union syntax: /// note -When defining a union, include the most specific type first, followed by the less specific type. In the example below, the more specific `PlaneItem` comes before `CarItem` in `PlaneItem | CarItem`. +When defining a [union](https://docs.pydantic.dev/latest/concepts/unions/), include the most specific type first, followed by the less specific type. In the example below, the more specific `PlaneItem` comes before `CarItem` in `PlaneItem | CarItem`. ///