Skip to content

Commit 0c8437f

Browse files
committed
docs: decorate sample code with '``'
1 parent c27af00 commit 0c8437f

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

user_guide_src/source/database/results.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -81,18 +81,18 @@ digit in the first parameter:
8181
In addition, you can walk forward/backwards/first/last through your
8282
results using these variations:
8383

84-
| **$row = $query->getFirstRow()**
85-
| **$row = $query->getLastRow()**
86-
| **$row = $query->getNextRow()**
87-
| **$row = $query->getPreviousRow()**
84+
| ``$row = $query->getFirstRow()``
85+
| ``$row = $query->getLastRow()``
86+
| ``$row = $query->getNextRow()``
87+
| ``$row = $query->getPreviousRow()``
8888
8989
By default they return an object unless you put the word "array" in the
9090
parameter:
9191

92-
| **$row = $query->getFirstRow('array')**
93-
| **$row = $query->getLastRow('array')**
94-
| **$row = $query->getNextRow('array')**
95-
| **$row = $query->getPreviousRow('array')**
92+
| ``$row = $query->getFirstRow('array')``
93+
| ``$row = $query->getLastRow('array')``
94+
| ``$row = $query->getNextRow('array')``
95+
| ``$row = $query->getPreviousRow('array')``
9696
9797
.. note:: All the methods above will load the whole result into memory
9898
(prefetching). Use ``getUnbufferedRow()`` for processing large

0 commit comments

Comments
 (0)