]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏️ Update highlighted line in `docs/en/docs/tutorial/bigger-applications.md` (#5490)
authorPedro Augusto de Paula Barbosa <papb1996@gmail.com>
Thu, 11 Jan 2024 20:18:07 +0000 (17:18 -0300)
committerGitHub <noreply@github.com>
Thu, 11 Jan 2024 20:18:07 +0000 (21:18 +0100)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
Co-authored-by: Alejandra <90076947+alejsdev@users.noreply.github.com>
docs/en/docs/tutorial/bigger-applications.md

index 9ec3720c8d7141d591dcc798d4eb0b0a10b5f89d..b2d92840523a3dbaf3859717dbc9dda3e42654d9 100644 (file)
@@ -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!}
 ```