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

✏ Fix typo in docs/tutorial/select.md #462

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/tutorial/select.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,9 @@ This new session we created uses the *same* **engine**, but it's a new and indep

The code above creating the models could, for example, live in a function handling web API requests and creating models.

And the second section reading data from the database could be in another function for other requests.
And the second session reading data from the database could be in another function for other requests.

So, both sections could be in **different places** and would need their own sessions.
So, both sessions could be in **different places** and would need their own sessions.

!!! info
To be fair, in this example all that code could actually share the same **session**, there's actually no need to have two here.
Expand Down