From: Taras Sotnikov <39197238+tsotnikov@users.noreply.github.com> Date: Sun, 16 Feb 2020 19:57:29 +0000 (+0100) Subject: :memo: Fix broken link in docs (#949) X-Git-Tag: 0.49.0~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=35d41adc7b0f70bddeb5ae2b47983d932bc274c4;p=thirdparty%2Ffastapi%2Ffastapi.git :memo: Fix broken link in docs (#949) --- diff --git a/docs/python-types.md b/docs/python-types.md index 1ab66a1eaf..5d25e18165 100644 --- a/docs/python-types.md +++ b/docs/python-types.md @@ -256,7 +256,7 @@ Taken from the official Pydantic docs: **FastAPI** is all based on Pydantic. -You will see a lot more of all this in practice in the [Tutorial - User Guide](tutorial/){.internal-link target=_blank}. +You will see a lot more of all this in practice in the [Tutorial - User Guide](tutorial/index.md){.internal-link target=_blank}. ## Type hints in **FastAPI** @@ -276,7 +276,7 @@ With **FastAPI** you declare parameters with type hints and you get: * **Document** the API using OpenAPI: * which is then used by the automatic interactive documentation user interfaces. -This might all sound abstract. Don't worry. You'll see all this in action in the [Tutorial - User Guide](tutorial/){.internal-link target=_blank}. +This might all sound abstract. Don't worry. You'll see all this in action in the [Tutorial - User Guide](tutorial/index.md){.internal-link target=_blank}. The important thing is that by using standard Python types, in a single place (instead of adding more classes, decorators, etc), **FastAPI** will do a lot of the work for you.