From: Reza Rohani Date: Sat, 5 Aug 2023 08:33:08 +0000 (+0330) Subject: 📝 Fix code highlighting in `docs/en/docs/tutorial/bigger-applications.md` (#9806) X-Git-Tag: 0.101.1~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b76112f1a5230a8724994b9fa9fcf5bb417b1e09;p=thirdparty%2Ffastapi%2Ffastapi.git 📝 Fix code highlighting in `docs/en/docs/tutorial/bigger-applications.md` (#9806) Update bigger-applications.md --- diff --git a/docs/en/docs/tutorial/bigger-applications.md b/docs/en/docs/tutorial/bigger-applications.md index daa7353a2e..26d26475f2 100644 --- a/docs/en/docs/tutorial/bigger-applications.md +++ b/docs/en/docs/tutorial/bigger-applications.md @@ -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!} ```