]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
📝 Fix code highlighting in `docs/en/docs/tutorial/bigger-applications.md` (#9806)
authorReza Rohani <theonlykingpin@gmail.com>
Sat, 5 Aug 2023 08:33:08 +0000 (12:03 +0330)
committerGitHub <noreply@github.com>
Sat, 5 Aug 2023 08:33:08 +0000 (10:33 +0200)
Update bigger-applications.md

docs/en/docs/tutorial/bigger-applications.md

index daa7353a2e258dc8980a94dca61005198ed0c6b2..26d26475f2f52b9e45427b10e3d69a17cee8beac 100644 (file)
@@ -377,7 +377,7 @@ The `router` from `users` would overwrite the one from `items` and we wouldn't b
 
 So, to be able to use both of them in the same file, we import the submodules directly:
 
-```Python hl_lines="4"
+```Python hl_lines="5"
 {!../../../docs_src/bigger_applications/app/main.py!}
 ```