Skip to content

minor: fix typo for field/filed #988

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/document.txt
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ Query Specification Documents
Query documents specify the conditions that determine which records to
select for read, update, and delete operations. You can use
``<field>:<value>`` expressions to specify the equality condition and
:doc:`query operator </reference/operator>` expressions to specifyo
:doc:`query operator </reference/operator>` expressions to specify
additional conditions.

When passed as an argument to methods such as the :method:`find()
Expand Down
2 changes: 1 addition & 1 deletion source/reference/configuration-options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ Settings
parameters. The :dbcommand:`setParameter` database command provides
access to many of these parameters.

Declare all :dbcommand:`setParamater` settings in this file using the following form:
Declare all :dbcommand:`setParameter` settings in this file using the following form:

.. code-block:: sh

Expand Down
2 changes: 1 addition & 1 deletion source/reference/method/db.collection.indexStats.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ db.collection.indexStats()
aggregate statistics for the B-tree data structure that stores data
for a MongoDB index.

:method:`db.collection.indexStats()` is only avalible only on
:method:`db.collection.indexStats()` is only available on
:program:`mongod` instances running with the
``--enableExperimentalIndexStatsCmd`` option.

Expand Down
10 changes: 5 additions & 5 deletions source/reference/method/db.getReplicationInfo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,30 +45,30 @@ Output
Returns the difference between the first and
last operation in the :term:`oplog`, represented in seconds.

Only present if there are entires in the oplog.
Only present if there are entries in the oplog.

.. data:: db.getReplicationInfo.timeDiffHours

Returns the difference between the first and last
operation in the :term:`oplog`, rounded and represented in hours.

Only present if there are entires in the oplog.
Only present if there are entries in the oplog.

.. data:: db.getReplicationInfo.tFirst

Returns a time stamp for the first (i.e. earliest)
operation in the :term:`oplog`. Compare this value to the last write
operation issued against the server.

Only present if there are entires in the oplog.
Only present if there are entries in the oplog.

.. data:: db.getReplicationInfo.tLast

Returns a time stamp for the last (i.e. latest)
operation in the :term:`oplog`. Compare this value to the last write
operation issued against the server.

Only present if there are entires in the oplog.
Only present if there are entries in the oplog.

.. data:: db.getReplicationInfo.now

Expand All @@ -77,4 +77,4 @@ Output
slightly from the server time if you're connecting from a remote host
as a result. Equivalent to :method:`Date()`.

Only present if there are entires in the oplog.
Only present if there are entries in the oplog.
4 changes: 2 additions & 2 deletions source/reference/operator.txt
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ Array

.. include:: /includes/table-operator-update-array.rst

Modifers
````````
Modifiers
`````````

.. include:: /includes/table-operator-update-array-modifiers.rst

Expand Down
2 changes: 1 addition & 1 deletion source/reference/program/mongoimport.txt
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Options
restore data into a MongoDB instance that already has data, or to
restore only some data in the specified imported data set.

.. option:: --fields <field1<,filed2>>, -f <field1[,filed2]>
.. option:: --fields <field1<,field2>>, -f <field1[,field2]>

Specify a comma separated list of field names when importing
:term:`csv` or :term:`tsv` files that do not have field names in
Expand Down
6 changes: 3 additions & 3 deletions source/reference/program/mongoperf.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ independently of MongoDB.
It times tests of random disk I/O and presents the results. You can
use :program:`mongoperf` for any case apart from MongoDB. The
:setting:`~mongoperf.mmf` ``true`` mode is completely generic. In
that mode is it somewhat analogous to tools such as `bonnie++
that mode it is somewhat analogous to tools such as `bonnie++
<http://sourceforge.net/projects/bonnie/>`_ (albeit mongoperf is
simpler).

Expand Down Expand Up @@ -170,7 +170,7 @@ Configuration Fields
similar to :option:`--syncdelay <mongod --syncdelay>` for :program:`mongod`.

The :setting:`~mongoperf.syncDelay` controls how frequently
:program:`mongoperf` performs an asynchronous disk flush the memory
:program:`mongoperf` performs an asynchronous disk flush of the memory
mapped file used for testing. By default, :program:`mongod`
performs this operation every 60 seconds. Use
:setting:`~mongoperf.syncDelay` to test basic system performance of
Expand All @@ -179,7 +179,7 @@ Configuration Fields
Only use :setting:`~mongoperf.syncDelay` in conjunction with
:setting:`~mongoperf.mmf` set to ``true``.

The default value of ``0`` disables this
The default value of ``0`` disables this.

Use
---
Expand Down
2 changes: 1 addition & 1 deletion source/tutorial/add-user-administrator.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ user can then create all other users in the system.
carefully controlled.

Users with the :authrole:`userAdminAnyDatabase` and
:authrole:`userAdminAnyDatabase` privleges are not the same as the
:authrole:`userAdminAnyDatabase` privileges are not the same as the
UNIX ``root`` superuser in that this role confers **no additional
access** beyond user administration. These users cannot perform
administrative operations or read or write data without first
Expand Down