Skip to content

Commit af8d2d4

Browse files
committed
add missing backticks to docs
1 parent 8faa66d commit af8d2d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/piccolo/query_types/select.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,15 +99,15 @@ By default all columns are returned from the queried table.
9999
b.select().run_sync()
100100
101101
To restrict the returned columns, either pass in the columns into the
102-
``select`` method, or use the `columns` method.
102+
``select`` method, or use the ``columns`` method.
103103

104104
.. code-block:: python
105105
106106
b = Band
107107
# Equivalent to SELECT name from band
108108
b.select().columns(b.name).run_sync()
109109
110-
The `columns` method is additive, meaning you can chain it to add additional
110+
The ``columns`` method is additive, meaning you can chain it to add additional
111111
columns.
112112

113113
.. code-block:: python

0 commit comments

Comments
 (0)