Skip to content

Commit ee62338

Browse files
authored
DOCSP-49720 updates cursor links to point to cursors doc (#12311)
1 parent cb59082 commit ee62338

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

content/manual/upcoming/source/reference/command/serverStatus.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2849,7 +2849,7 @@ metrics
28492849

28502850
:serverstatus:`metrics.repl.network.getmores` reports on the
28512851
``getmore`` operations, which are requests for additional results
2852-
from the oplog :term:`cursor` as part of the oplog replication
2852+
from the oplog :ref:`cursor <cursors>` as part of the oplog replication
28532853
process.
28542854

28552855
.. TODO move the documentation of getmore into some central place

content/manual/upcoming/source/reference/glossary.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ Glossary
508508
not opened within a session automatically timeout after 10
509509
minutes of inactivity. Cursors opened in a session close with
510510
the end or timeout of the session.
511-
See :ref:`read-operations-cursors`.
511+
See :ref:`cursors`.
512512

513513
Customer Master Key
514514
A key that encrypts your :term:`Data Encryption Key`.

content/manual/upcoming/source/reference/method/Mongo.watch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Definition
162162

163163

164164
:returns:
165-
A :term:`cursor` over the change event documents.
165+
A :ref:`cursor <cursors>` over the change event documents.
166166
See :doc:`/reference/change-events` for examples of change
167167
event documents.
168168

content/manual/upcoming/source/reference/method/cursor.close.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Definition
1616
.. include:: /includes/fact-mongosh-shell-method.rst
1717

1818

19-
Instructs the server to close a :ref:`cursor <read-operations-cursors>`
19+
Instructs the server to close a :ref:`cursor <cursors>`
2020
and free associated server resources. The server will automatically close
2121
cursors that have no remaining results, as well as cursors that have been
2222
idle for a period of time and lack the :method:`cursor.noCursorTimeout()`

content/manual/upcoming/source/reference/method/cursor.returnKey.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Definition
3838

3939
:returns:
4040

41-
The :term:`cursor` that :method:`~cursor.returnKey()` is attached to
41+
The :ref:`cursor <cursors>` that :method:`~cursor.returnKey()` is attached to
4242
with a modified result set. This allows for additional cursor modifiers
4343
to be chained.
4444

content/manual/upcoming/source/reference/method/cursor.tailable.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Definition
6666
Defaults to ``false``.
6767

6868
:returns:
69-
The :term:`cursor` that ``~cursor.tailable()`` is attached to.
69+
The :ref:`cursor <cursors>` that ``~cursor.tailable()`` is attached to.
7070

7171
Compatibility
7272
-------------

content/manual/upcoming/source/reference/method/db.collection.find.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ Iterate the Returned Cursor
744744
~~~~~~~~~~~~~~~~~~~~~~~~~~~
745745

746746
The :method:`~db.collection.find()` method returns a
747-
:ref:`cursor <read-operations-cursors>` to the results.
747+
:ref:`cursor <cursors>` to the results.
748748

749749
In :binary:`~bin.mongosh`, if the returned cursor is not assigned to a
750750
variable using the ``var`` keyword, the cursor is automatically iterated to

content/manual/upcoming/source/reference/method/db.collection.watch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Definition
172172
and ``startAfter``.
173173

174174
:returns:
175-
A :term:`cursor` that remains open as long as a connection to the
175+
A :ref:`cursor <cursors>` that remains open as long as a connection to the
176176
MongoDB deployment remains open *and* the collection exists.
177177
See :doc:`/reference/change-events` for examples of change
178178
event documents.

content/manual/upcoming/source/reference/method/db.watch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Definition
142142
and ``startAfter``.
143143

144144
:returns:
145-
A :term:`cursor` over the change event documents.
145+
A :ref:`cursor <cursors>` over the change event documents.
146146
See :doc:`/reference/change-events` for examples of change
147147
event documents.
148148

content/manual/upcoming/source/tutorial/query-documents.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ Query Result Format
438438
~~~~~~~~~~~~~~~~~~~
439439

440440
When you run a find operation with a MongoDB driver or ``mongosh``, the
441-
command returns a :term:`cursor` that manages query results. The query
441+
command returns a :ref:`cursor <cursors>` that manages query results. The query
442442
results are not returned as an array of documents.
443443

444444
To learn how to iterate through documents in a cursor, refer to your

0 commit comments

Comments
 (0)