Skip to content

Commit 09a788a

Browse files
committed
Fix add extra space
1 parent 2046fd7 commit 09a788a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/tutorial/where.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ We care specially about the **select** statement:
189189

190190
Now, the same way that we add `WHERE` to a SQL statement to filter rows, we can add a `.where()` to a **SQLModel** `select()` statement to filter rows, which will filter the objects returned:
191191

192-
{* ./docs_src/tutorial/where/tutorial001_py310.py ln[34:39] hl[5]*}
192+
{* ./docs_src/tutorial/where/tutorial001_py310.py ln[34:39] hl[5] *}
193193

194194
It's a very small change, but it's packed of details. Let's explore them.
195195

@@ -497,7 +497,7 @@ secret_name='Tommy Sharp' age=48 id=3 name='Rusty-Man'
497497

498498
Let's update the function `create_heroes()` and add some more rows to make the next comparison examples clearer:
499499

500-
{* ./docs_src/tutorial/where/tutorial003_py310.py ln[21-39] hl[4:10,13:19]*}
500+
{* ./docs_src/tutorial/where/tutorial003_py310.py ln[21-39] hl[4:10,13:19] *}
501501

502502
Now that we have several heroes with different ages, it's gonna be more obvious what the next comparisons do.
503503

@@ -704,7 +704,7 @@ We can tell the editor that this class attribute is actually a special **SQLMode
704704

705705
To do that, we can import `col()` (as short for "column"):
706706

707-
{* ./docs_src/tutorial/where/tutorial011_py310.py ln[1] hl[1]*}
707+
{* ./docs_src/tutorial/where/tutorial011_py310.py ln[1] hl[1] *}
708708

709709
And then put the **class attribute** inside `col()` when using it in a `.where()`:
710710

0 commit comments

Comments
 (0)