Skip to content

Commit e1e821d

Browse files
authored
DOCSP-26473 docs replacements (mongodb#2378)
1 parent e8be513 commit e1e821d

13 files changed

+15
-20
lines changed

source/core/replica-set-write-concern.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ operation uses its own write concern instead of the default.
135135
Custom Write Concerns
136136
---------------------
137137

138-
You can :doc:`tag </tutorial/configure-replica-set-tag-sets>` the
138+
You can :ref:`tag <replica-set-configuration-tag-sets>` the
139139
members of replica sets and use the resulting tag sets to create custom write
140-
concerns. See :doc:`/tutorial/configure-replica-set-tag-sets` for
140+
concerns. See :ref:`replica-set-configuration-tag-sets` for
141141
information on configuring custom write concerns using tag sets.

source/core/security-users.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ A user's name and authentication database serve as a unique identifier
7171
for that user. MongoDB associates a user with a unique ``userId`` upon
7272
creation in MongoDB. However, :ref:`LDAP managed users <security-ldap>`
7373
created on an LDAP server do not have an associated document in the
74-
:doc:`system.users </reference/system-users-collection>` collection, and
74+
:ref:`system.users <system-users>` collection, and
7575
therefore don't have a :data:`~admin.system.users.userId` field
7676
associated with them.
7777

source/faq/diagnostics.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ As a related problem, the system will split chunks only on
179179
inserts or updates, which means that if you configure sharding and do not
180180
continue to issue insert and update operations, the database will not
181181
create any chunks. You can either wait until your application inserts
182-
data *or* :doc:`split chunks manually </tutorial/split-chunks-in-sharded-cluster>`.
182+
data *or* :ref:`split chunks manually <split-chunks-sharded-cluster>`.
183183

184184
Finally, if your shard key has a low :ref:`cardinality
185185
<sharding-shard-key-cardinality>`, MongoDB may not be able to create

source/reference/built-in-roles.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ down to a collection level of granularity.
2424

2525
Each of MongoDB's built-in roles defines access at the database level for all
2626
*non*-system collections in the role's database and at the collection level
27-
for all :doc:`system collections </reference/system-collections>`.
27+
for all :ref:`system collections <metadata-system-collections>`.
2828

2929
MongoDB provides the built-in :ref:`database user <database-user-roles>` and
3030
:ref:`database administration <database-administration-roles>` roles on

source/reference/command/buildInfo.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ These fields are stable and should provide consistent behavior.
9898

9999
.. data:: buildInfo.storageEngines
100100

101-
A list of :doc:`storage engines </faq/storage>` available to the
101+
A list of :ref:`storage engines <faq-storage>` available to the
102102
:binary:`~bin.mongod` server.
103103

104104
.. data:: buildInfo.javascriptEngine

source/reference/command/serverStatus.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2086,7 +2086,7 @@ metrics
20862086
.. serverstatus:: metrics.queryExecutor.collectionScans.nonTailable
20872087

20882088
The number of queries that performed a collection scan that did not
2089-
use a :doc:`tailable cursor </core/tailable-cursors>`.
2089+
use a :ref:`tailable cursor <tailable-cursors-landing-page>`.
20902090

20912091
.. versionadded:: 4.4
20922092

@@ -2354,7 +2354,7 @@ metrics
23542354
.. serverstatus:: metrics.repl.syncSource
23552355

23562356
Information on a replica set node's
2357-
:doc:`sync source selection </core/replica-set-sync/>` process.
2357+
:ref:`sync source selection <replica-set-sync>` process.
23582358

23592359
.. versionadded:: 4.4
23602360

source/reference/operator/query/text.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Definition
2020
.. query:: $text
2121

2222
:query:`$text` performs a text search on the content of the fields
23-
indexed with a :doc:`text index </core/index-text>`. A
23+
indexed with a :ref:`text index <index-feature-text>`. A
2424
:query:`$text` expression has the following syntax:
2525

2626
.. code-block:: javascript

source/reference/system-collections.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
2-
3-
4-
51
.. _metadata-system-collections:
62

73
==================

source/reference/system-users-collection.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. _system-users:
2+
13
===========================
24
``system.users`` Collection
35
===========================

source/release-notes/4.4.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1336,7 +1336,7 @@ When creating a collection inside a transaction:
13361336

13371337
- The :method:`db.createCollection()` method fails if
13381338
executed against a
1339-
:doc:`system collection </reference/system-collections>`.
1339+
:ref:`system collection <metadata-system-collections>`.
13401340

13411341
When :ref:`creating an index <transactions-operations-ddl-explicit>`
13421342
inside a transaction:
@@ -1349,7 +1349,7 @@ inside a transaction:
13491349

13501350
- The :method:`db.collection.createIndex()` method
13511351
fails if executed against a
1352-
:doc:`system collection </reference/system-collections>`.
1352+
:ref:`system collection <metadata-system-collections>`.
13531353

13541354
For more details, see :ref:`transactions-create-collections-indexes`.
13551355

source/storage.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Storage
1010
:depth: 1
1111
:class: singlecol
1212

13-
The :doc:`storage engine </core/storage-engines>` is the primary
13+
The :ref:`storage engine <storage-engines>` is the primary
1414
component of MongoDB responsible for managing data. MongoDB provides a
1515
variety of storage engines, allowing you to choose one most suited to
1616
your application.

source/tutorial/configure-replica-set-tag-sets.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
2-
3-
41
.. _replica-set-configuration-tag-sets:
52

63
==============================

source/tutorial/list-users.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ List Users
1313
:class: singlecol
1414

1515
To list all users, use :binary:`~bin.mongosh` to query the
16-
:doc:`system.users </reference/system-users-collection>` collection:
16+
:ref:`system.users <system-users>` collection:
1717

1818
.. code-block:: sh
1919

0 commit comments

Comments
 (0)