From: Pedro Augusto de Paula Barbosa Date: Thu, 11 Jan 2024 20:18:07 +0000 (-0300) Subject: ✏️ Update highlighted line in `docs/en/docs/tutorial/bigger-applications.md` (#5490) X-Git-Tag: 0.109.1~268 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d192ddacec3ffc2d0ff5ec43bc7f816358ab769c;p=thirdparty%2Ffastapi%2Ffastapi.git ✏️ Update highlighted line in `docs/en/docs/tutorial/bigger-applications.md` (#5490) Co-authored-by: Sebastián Ramírez Co-authored-by: Alejandra <90076947+alejsdev@users.noreply.github.com> --- diff --git a/docs/en/docs/tutorial/bigger-applications.md b/docs/en/docs/tutorial/bigger-applications.md index 9ec3720c8d..b2d9284052 100644 --- a/docs/en/docs/tutorial/bigger-applications.md +++ b/docs/en/docs/tutorial/bigger-applications.md @@ -315,7 +315,7 @@ And we can even declare [global dependencies](dependencies/global-dependencies.m Now we import the other submodules that have `APIRouter`s: -```Python hl_lines="5" title="app/main.py" +```Python hl_lines="4-5" title="app/main.py" {!../../../docs_src/bigger_applications/app/main.py!} ```