Skip to content

typo correction c/mogno/mongo/ #87

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

Merged
merged 1 commit into from
Jul 25, 2012
Merged
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/reference/commands.txt
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ Aggregation
.. seealso:: ":func:`mapReduce()`" and ":term:`map-reduce`."

Also, the ":wiki:`MapReduce` page, provides a greater overview
of MognoDB's map-reduce functionality. Consider the
of MongoDB's map-reduce functionality. Consider the
":wiki:`Simple application <Aggregation>`" support for basic
aggregation operations and ":doc:`/applications/aggregation`"
for a more flexible approach to data aggregation in MongoDB.
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 @@ -529,7 +529,7 @@ Settings

*Default:* false

When set to ``true``, :program:`mognod` returns diagnostic system
When set to ``true``, :program:`mongod` returns diagnostic system
information regarding the page size, the number of physical pages,
and the number of available physical pages to standard output.

Expand Down
4 changes: 2 additions & 2 deletions source/reference/javascript.txt
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ Data Aggregation
``_id`` field.

.. seealso:: :term:`map-reduce`, provides a greater overview
of MognoDB's map-reduce functionality.
of MongoDB's map-reduce functionality.

Also consider ":doc:`/applications/aggregation`" for a more
flexible approach to data aggregation in MongoDB, and the
Expand Down Expand Up @@ -2112,7 +2112,7 @@ These functions are accessible in the shell but exist to support other
functionality in the environment. Do not call these functions
directly.

.. function:: _startMognoProgram()
.. function:: _startMongoProgram()

For internal use.

Expand Down
2 changes: 1 addition & 1 deletion source/reference/mongod.txt
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ Options
.. option:: --dbpath <path>

Specify a directory for the :program:`mongod` instance to store its
data. Typical locations include: ``/srv/mognodb``,
data. Typical locations include: ``/srv/mongodb``,
``/var/lib/mongodb`` or ``/opt/mongodb``

Unless specified, :program:`mongod` will look for data files in the
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 @@ -429,7 +429,7 @@ mem
.. status:: mem.mapped

The value of :status:`mem.mapped` provides the amount of mapped memory by
the database. Because MognoDB uses memory-mapped files, this value
the database. Because MongoDB uses memory-mapped files, this value
is likely to be to be roughly equivalent to the total size of your
database or databases.

Expand Down
2 changes: 1 addition & 1 deletion source/use-cases/product-catalog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Problem

Product catalogs must have the capacity to store many differed types
of objects with different sets of attributes. These kinds of data
collections are quite compatible with MognoDB's data model, but many
collections are quite compatible with MongoDB's data model, but many
important considerations and design decisions remain.

Solution
Expand Down