Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✏️ Update highlighted line in docs/en/docs/tutorial/bigger-applications.md #5490

Merged
merged 4 commits into from Jan 11, 2024
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/en/docs/tutorial/bigger-applications.md
Expand Up @@ -298,7 +298,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"
```Python hl_lines="4-5"
{!../../../docs_src/bigger_applications/app/main.py!}
```

Expand Down Expand Up @@ -360,7 +360,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!}
```

Expand Down