Skip to content

minor: typo & link repair run #854

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 4 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/update.txt
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ and a ``<query>`` argument with an ``_id`` field.

.. example::

Consider the following psudocode explanation of
Consider the following pseudocode explanation of
:method:`~db.collection.save()` as an illustration of its
behavior:

Expand Down
2 changes: 1 addition & 1 deletion source/data-modeling.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ may be able to use different structures for a single data set in
MongoDB, different data models may have significant impacts on MongoDB
and applications performance. Consider :doc:`/core/data-modeling` for
a conceptual overview of data modeling problems in MongoDB, and the
:ref:`data-modeling-patterns` documents for exaples of different
:ref:`data-modeling-patterns` documents for examples of different
approaches to data models.

.. seealso:: :doc:`/use-cases` for overviews of application design,
Expand Down
2 changes: 1 addition & 1 deletion source/reference/aggregation/concat.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ $concat (aggregation)
{ _id: 4, item: { sec: "main", category: "pie", type: "chicken pot" } }

The following operation uses :expression:`$concat` to concatenate
the ``type`` field from the sub-document ``item``, a space `` ``,
the ``type`` field from the sub-document ``item``, a space,
and the ``category`` field from the sub-document ``item`` to
project a new ``food`` field:

Expand Down
2 changes: 0 additions & 2 deletions source/reference/method/cd.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,3 @@ cd()

This function returns with output relative to the current shell
session, and does not impact the server.

.. note:: This feature is not yet implemented.
2 changes: 1 addition & 1 deletion source/reference/mongoimport.txt
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ Options
.. option:: --fieldFile <filename>

As an alternative to :option:`--fields` the :option:`--fieldFile`
option allows you to specify a file (e.g. ``<file>```) to that
option allows you to specify a file (e.g. ``<file>``) to that
holds a list of field names if your :term:`csv` or :term:`tsv`
file does not include field names in the first (i.e. header) line
of the file. Place one field per line.
Expand Down
2 changes: 1 addition & 1 deletion source/reference/server-status.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1278,7 +1278,7 @@ metrics
members of a replica set to acknowledge the write operation
(i.e. greater than ``1``.)

.. data:: serverStatus.metrics.getLastError.wtime.totalMillis`
.. data:: serverStatus.metrics.getLastError.wtime.totalMillis

:data:`~serverStatus.metrics.getLastError.wtime.totalMillis` reports
the total amount of time in milliseconds that the :program:`mongod`
Expand Down
6 changes: 1 addition & 5 deletions source/reference/ulimit.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,7 @@ For :program:`mongos`, consider the following behaviors:
fulfill requests without needing to create new connections.

- You can limit the number of incoming connections using
the :setting:`maxConns` run-time option:

.. code-block:: javascript

:option:`--maxConns <mongos --maxConns>`
the :option:`maxConns <mongos --maxConns>` run-time option.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should be:

  :option:`--maxConns <mongos --maxConns>`

or:

  :setting:`maxConns`

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure I understand, my primary edit was to remove the code-block entirely since it wasn't resolving (and sort of didn't make sense in context).


By restricting the number of incoming connections you can prevent a
cascade effect where the :program:`mongos` creates too many
Expand Down
2 changes: 1 addition & 1 deletion source/tutorial/isolate-sequence-of-operations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ as:
reasons: First, in sharded environments, distributed locks could be
expensive and slow. MongoDB's goal is to be lightweight and fast. We
dislike the concept of deadlocks. We want the system to be simple and
predictable without these sort of surprises. We want Mongo DB to work
predictable without these sort of surprises. We want MongoDB to work
well for realtime problems. If an operation may execute which locks
large amounts of data, it might stop some small light queries for an
extended period of time."