Skip to content

Fixed minor typos #971

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/indexes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ and each key's direction in the index (1 or -1).

The resulting index is named: ``item_1_quantity_-1``.

Optionally. you can specify a name for an index instead of using the
Optionally, you can specify a name for an index instead of using the
default name.

.. example:: Issue the following command to create an index on ``item``
Expand Down
2 changes: 1 addition & 1 deletion source/faq/developers.txt
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ information on indexes.

.. Commenting out.. If your small documents are approximately the page
cache unit size, there is no benefit for ram cache efficiency, although
embedding will provide some benefit regarding random disk i/o.
embedding will provide some benefit regarding random disk I/O.

.. _faq-developers-manual-padding:

Expand Down
2 changes: 1 addition & 1 deletion source/faq/fundamentals.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ partitioning.
.. note::

MongoDB uses :term:`BSON`, a binary object format similar
to, but more expressive than, :term:`JSON`.
to, but more expressive than :term:`JSON`.

Do MongoDB databases have tables?
---------------------------------
Expand Down
2 changes: 1 addition & 1 deletion source/reference/glossary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ Glossary
for to store indexes. MongoDB uses b-trees for its indexes.

ISODate
The international date format used by :program:`mongo`.
The international date format used by :program:`mongo`
to display dates. E.g. ``YYYY-MM-DD HH:MM.SS.milis``.

journal
Expand Down
8 changes: 4 additions & 4 deletions source/tutorial/manage-chunks-in-sharded-cluster.txt
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,10 @@ Modify Chunk Size
-----------------

When you initialize a sharded cluster, [#mongos-initialization]_ the
default chunk size is 64 megabytes. this default chunk size works well
for most deployments. however, if you notice that automatic migrations
are incurring a level of i/o that your hardware cannot handle, you may
want to reduce the chunk size. for the automatic splits and
default chunk size is 64 megabytes. This default chunk size works well
for most deployments; however, if you notice that automatic migrations
are incurring a level of I/O that your hardware cannot handle, you may
want to reduce the chunk size. For the automatic splits and
migrations, a small chunk size leads to more rapid and frequent
migrations.

Expand Down
2 changes: 1 addition & 1 deletion source/tutorial/write-scripts-for-the-mongo-shell.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ evaluate a javascript file
~~~~~~~~~~~~~~~~~~~~~~~~~~

You can specify a ``.js`` file to the :program:`mongo` shell, and
:program:`mongo` will evaluate the javascript directly. consider the
:program:`mongo` will evaluate the javascript directly. Consider the
following example:

.. code-block:: sh
Expand Down