📝 Fix code highlighting in `docs/en/docs/tutorial/bigger-applications.md` (#9806)

Update bigger-applications.md
This commit is contained in:
Reza Rohani 2023-08-05 12:03:08 +03:30 committed by GitHub
parent f2e80fae09
commit b76112f1a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View 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!}
```