Skip to content

typo run #1920

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/core/data-model-operations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ size exceeds the allocated space for that document, MongoDB will
relocate the document on disk. Relocating documents takes longer than
*in place updates* and can lead to fragmented storage. Although
MongoDB automatically :ref:`adds padding to document allocations
<record-allocation-stratgies>` to minimize the likelihood of relocation, data
<record-allocation-strategies>` to minimize the likelihood of relocation, data
models should avoid document growth when possible.

For instance, if your applications require updates that will cause
Expand Down
2 changes: 1 addition & 1 deletion source/core/storage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ flushing all changes.
See :doc:`/core/journaling` for more information about the journal in
MongoDB.

.. _record-allocation-stratgies:
.. _record-allocation-strategies:

Record Allocation Strategies
----------------------------
Expand Down
4 changes: 2 additions & 2 deletions source/faq/developers.txt
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ size. To *minimize* document movements, MongoDB uses
:term:`padding`.

You should not have to pad manually because MongoDB adds
:ref:`padding automatically <record-allocation-stratgies>` and can
:ref:`padding automatically <record-allocation-strategies>` and can
adaptively adjust the amount of padding added to documents to prevent
document relocations following updates.
You can change the default :data:`~collStats.paddingFactor`
Expand Down Expand Up @@ -769,4 +769,4 @@ as in the following example.

.. seealso::

:ref:`record-allocation-stratgies`
:ref:`record-allocation-strategies`
6 changes: 3 additions & 3 deletions source/reference/glossary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ Glossary
The extra space allocated to document on the disk to prevent
moving a document when it grows as the result of
:method:`~db.collection.update()`
operations. See :ref:`record-allocation-stratgies`.
operations. See :ref:`record-allocation-strategies`.

padding factor
An automatically-calibrated constant used to determine how much
Expand All @@ -552,7 +552,7 @@ Glossary
amount of space needed for the document. A padding factor of 2
means that MongoDB will allocate twice the amount of space
required by the document. See
:ref:`record-allocation-stratgies`.
:ref:`record-allocation-strategies`.

page fault
.. include:: /includes/fact-page-fault.rst
Expand Down Expand Up @@ -705,7 +705,7 @@ Glossary

record size
The space allocated for a document including the padding. For more
information on padding, see :ref:`record-allocation-stratgies`
information on padding, see :ref:`record-allocation-strategies`
and :doc:`/reference/command/compact`.

recovering
Expand Down
2 changes: 1 addition & 1 deletion source/release-notes/2.6-compatibility.txt
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ Description
and :method:`db.collection.remove()` for details.

- In sharded environments, :program:`mongos` no longer supports
"fire-and-orget" behavior. This limits throughput when writing data
"fire-and-forget" behavior. This limits throughput when writing data
to sharded clusters.

.. [#mongo-shell-gle-interactive]
Expand Down