Skip to content

Commit aa5772b

Browse files
committed
Update syntax.rst
1 parent 02fdf93 commit aa5772b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/src/piccolo/features/syntax.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ underlying SQL - making the ORM feel less magic.
2020

2121
.. code-block:: python
2222
23-
query = Band.select(Band.name).where(Band.popularity >= 100)
24-
25-
print(query)
23+
>>> query = Band.select(Band.name).where(Band.popularity >= 100)
24+
>>> print(query)
2625
'SELECT name from band where popularity > 100'

0 commit comments

Comments
 (0)