Skip to content

Commit 1ce3801

Browse files
committed
vale fix
1 parent 1f24caf commit 1ce3801

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/read/cursor.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Retrieve Documents Individually
8181

8282
To retrieve an individual document from a cursor, call the ``current()`` method on
8383
a ``MongoDB\Driver\Cursor`` instance. This method returns the document that the cursor
84-
currently points to. You can continue to advance the cursor by calling the ``next()``
84+
initially points to. You can continue to advance the cursor by calling the ``next()``
8585
method, which instructs the cursor to point to the next retrieved document.
8686

8787
The following example finds all documents in a collection that have a ``name`` value
@@ -151,7 +151,7 @@ collection. After the cursor is exhausted, it remains open until retrieving thre
151151

152152
.. output::
153153
:visible: false
154-
154+
155155
{"_id":{"$oid":"..."},"name":"cauliflower"}
156156
{"_id":{"$oid":"..."},"name":"zucchini"}
157157

0 commit comments

Comments
 (0)