From a41a1651c68d50a2f935a8c09dc7a91c069da868 Mon Sep 17 00:00:00 2001 From: svlandeg Date: Wed, 28 Aug 2024 11:25:15 +0200 Subject: [PATCH] fix typo --- docs/en/docs/advanced/django-orm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/docs/advanced/django-orm.md b/docs/en/docs/advanced/django-orm.md index 1992874dc..ad6fb4014 100644 --- a/docs/en/docs/advanced/django-orm.md +++ b/docs/en/docs/advanced/django-orm.md @@ -38,7 +38,7 @@ In your `main.py` file, let's import the `Question` model and create a FastAPI e //// tab | Python 3.8+ - ```Python +```Python {!> ../../../docs_src/django_orm/tutorial001.py[ln:10,16-20]!} ```