Skip to content

Commit 481e950

Browse files
committed
fixing build sadnesses
1 parent 6921ba5 commit 481e950

10 files changed

+15
-11
lines changed

source/includes/options-mongod.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1463,9 +1463,10 @@ description: |
14631463
14641464
.. include:: /includes/fact-audit-filter-yaml-configuration.rst
14651465
1466-
{ atype: <expression>, "param.db": <database> }
1466+
{ atype: <expression>, "param.db": <database> }
14671467
14681468
.. include:: /includes/note-audit-in-enterprise-only.rst
1469+
14691470
optional: true
14701471
---
14711472
program: mongod

source/includes/options-mongorestore.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ optional: true
354354
---
355355
program: mongorestore
356356
name: numParallelCollections
357-
alias: -j
357+
aliases: -j
358358
args: int
359359
directive: option
360360
description: |

source/includes/options-mongotop.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ optional: true
168168
---
169169
program: mongotop
170170
name: rowcount
171-
alias: -n
171+
aliases: -n
172172
directive: option
173173
args: int
174174
description: |

source/includes/table-system-event-audit-params-results.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ results_authCheck: |
110110
111111
By default, the auditing system logs only the authorization
112112
failures. To enable the system to log authorization successes, use
113-
the :parameter:`auditAuthorizationSuccess` parameter. [#performance]_
113+
the :parameter:`auditAuthorizationSuccess` parameter.
114114
115115
params_createIndex: |
116116

source/reference/command/serverStatus.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1126,7 +1126,7 @@ page.
11261126

11271127
.. data:: severStatus.security.SSLServerCertificateExpirationDate
11281128

1129-
A :ref:`date object <mongo-shell-date-type>` object that represents
1129+
A :ref:`date object <mongo-shell-data-type>` object that represents
11301130
the date when the SSL certificate specified by
11311131
:setting:`net.ssl.PEMKeyPassword` expires.
11321132

@@ -1510,8 +1510,8 @@ page.
15101510

15111511
.. versionadded:: 2.8.0
15121512

1513-
A document that reports on the use of :term:`database
1514-
commands`. The fields in :data:`~serverStatus.metrics.commands` are
1513+
A document that reports on the use of database
1514+
commands. The fields in :data:`~serverStatus.metrics.commands` are
15151515
the names of :doc:`database commands </reference/command>` and each
15161516
value is a document that reports the total number of commands
15171517
executed as well as the number of failed executions.

source/reference/method/db.createCollection-options-param.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ type: boolean
7272
position: 5
7373
description: |
7474
75+
7576
.. deprecated:: 2.8
7677
For ``mmapv1``, all collections have
7778
:collflag:`usePowerOf2Sizes` allocation unless the ``noPadding``
@@ -90,12 +91,12 @@ type: boolean
9091
position: 5
9192
description: |
9293
94+
9395
.. versionchanged:: 2.8
9496
For ``mmapv1``, ``noPadding`` flag removes all additional space in the record
9597
allocation, so that the allocation does not permit documents to grow
9698
after insertion without a new allocation. Defaults to
9799
``false``. Use for insert-only workloads.
98-
99100
## The description here must start with a blank line to render
100101
## correctly.
101102
---
@@ -110,6 +111,7 @@ type: document
110111
position: 6
111112
description: |
112113
114+
113115
.. versionadded:: 2.8
114116
115117
Allows users to specify configuration to the storage engine on a

source/reference/method/db.getLogComponents.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Definition
1414
Returns the current verbosity settings. The verbosity settings
1515
determine the amount of :doc:`/reference/log-messages` that MongoDB
1616
produces for each :ref:`log message component
17-
<log-messages-components>`.
17+
<log-message-components>`.
1818

1919
If a component inherits the verbosity level of its parent,
2020
:method:`db.getLogComponents()` displays ``-1`` for the component's

source/reference/replica-configuration.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ You can access the configuration of a :term:`replica set` using the
88
:method:`rs.conf()` or :dbcommand:`replSetGetConfig`.
99

1010
.. _replica-set-configuration-settings:
11+
.. _replica-set-configuration-document:
1112

1213
Example Output
1314
--------------

source/release-notes/2.8-compatibility.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ database. In previous versions, connections that gained access using
182182
the localhost exception had unrestricted access to the MongoDB
183183
instance.
184184

185-
See :ref:`local-host-exception` for more information.
185+
See :ref:`localhost-exception` for more information.
186186

187187
``db.addUser()`` Removed
188188
~~~~~~~~~~~~~~~~~~~~~~~~

source/tutorial/analyze-query-plan.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ The :method:`~cursor.explain()` method returns the following results:
172172
that MongoDB scanned three index entries.
173173

174174
- :data:`executionStats.totalDocsExamined
175-
<explain.totalDocsExamined>` display ``3` to indicate
175+
<explain.totalDocsExamined>` display ``3`` to indicate
176176
that MongoDB scanned three documents.
177177

178178
When run with an index, the query scanned ``3`` index entries and ``3``

0 commit comments

Comments
 (0)