Skip to content

Minor corrections #908

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 7 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/administration/monitoring.txt
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ control these options.
command.

- :setting:`logpath`. Enables logging to a file, rather than standard
output. Specify the full path to the log file to this setting..
output. Specify the full path to the log file to this setting.

- :setting:`logappend`. Adds information to a log
file instead of overwriting the file.
Expand Down
6 changes: 3 additions & 3 deletions source/applications/optimization.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ Optimization Strategies for MongoDB
.. default-domain:: mongodb

There are many factors that can affect database performance and
responsiveness, including index use, query structure, data models,
application design and architecture, as well as operational factors
such as architecture and system configuration.
responsiveness, including index use, query structure, data models and
application design, as well as operational factors such as architecture
and system configuration.

This section describes techniques for optimizing application
performance with MongoDB.
Expand Down
2 changes: 1 addition & 1 deletion source/core/data-modeling.txt
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ the following behaviors:
A single ``<database>.ns`` file stores all meta-data for each
:term:`database`. Each index and collection has its own entry in the
namespace file, MongoDB places :limit:`limits on the size of namespace
files. <Size of Namespace File>`.
files <Size of Namespace File>`.

Because of :limit:`limits on namespaces <Number of Namespaces>`, you
may wish to know the current number of namespaces in order to determine
Expand Down
1 change: 1 addition & 0 deletions source/core/update.txt
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ The :method:`~db.collection.update()` has the following syntax
.. [#previous-version] This examples uses the interface added in
MongoDB 2.2 to specify the ``multi`` and the ``upsert`` options in
a document form.

.. include:: /includes/fact-upsert-multi-options.rst

Modify with Update Operators
Expand Down
2 changes: 1 addition & 1 deletion source/faq/developers.txt
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ than once. [#id-is-immutable]_

The :method:`snapshot() <cursor.snapshot()>` does not guarantee that
the data returned by the query will reflect a single moment in time
*nor* does it provide isolation from insert or delete operations..
*nor* does it provide isolation from insert or delete operations.

.. warning::

Expand Down
2 changes: 1 addition & 1 deletion source/reference/limits.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Namespaces
Namespace files can be no larger than 2047 megabytes.

By default namespace files are 16 megabytes. You can configure the
size using the :setting:`nssize`.
size using the :setting:`nssize` option.

Indexes
~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion source/reference/system-collections.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Synopsis

MongoDB stores system information in collections that use the
``<database>.system.*`` :term:`namespace`, which MongoDB reserves for
internal use. Do not create collections that begin with ``system.``.
internal use. Do not create collections that begin with ``system``.

MongoDB also stores some additional instance-local metadata in the
:doc:`local database </reference/local-database>`, specifically for
Expand Down
2 changes: 1 addition & 1 deletion source/tutorial/evaluate-operation-performance.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ query.

.. example:: To use :method:`explain() <cursor.explain()>` on a query
for documents matching the expression ``{ a: 1 }``, in the
collection ``records``, use an operation that resembles the
collection named ``records``, use an operation that resembles the
following in the :program:`mongo` shell:

.. code-block:: javascript
Expand Down