diff --git a/source/about.txt b/source/about.txt index 2365305bdb7..1beb0b0ebe7 100644 --- a/source/about.txt +++ b/source/about.txt @@ -74,7 +74,7 @@ manuals are available for offline use: - :hardlink:`MongoDB Reference Manual ` (tar.gz) -- :hardlink:`MongoDB CURD Operation Introduction ` (tar.gz) +- :hardlink:`MongoDB CRUD Operation Introduction ` (tar.gz) .. important:: The ``texinfo`` manuals are experimental. If you find an issue with one of these editions, please file an issue in the diff --git a/source/administration/vulnerability-notification.txt b/source/administration/vulnerability-notification.txt index 160c7635316..a33c5ed5424 100644 --- a/source/administration/vulnerability-notification.txt +++ b/source/administration/vulnerability-notification.txt @@ -41,14 +41,14 @@ Jira communication regarding MongoDB and related products. Submit a ticket in the "`Core Server Security -`_" project, at: -. The ticket number will become +`_" project, at: +. The ticket number will become reference identification for the issue for the lifetime of the issue, and you can use this identifier for tracking purposes. 10gen will respond to any vulnerability notification received in a Jira case posted to the `SECURITY -`_ project. +`_ project. Email ~~~~~ diff --git a/source/core/read-operations.txt b/source/core/read-operations.txt index 5e893206916..69bdc7c03c3 100644 --- a/source/core/read-operations.txt +++ b/source/core/read-operations.txt @@ -5,7 +5,7 @@ Read Operations .. default-domain:: mongodb Read operations include all operations that return a cursor in -response to application request datas (i.e. *queries*,) and also +response to application request data (i.e. *queries*,) and also include a number of :doc:`aggregation ` operations that do not return a cursor but have similar properties as queries. These commands include :dbcommand:`aggregate`, :dbcommand:`count`, and @@ -792,8 +792,9 @@ Consider the following behaviors related to cursors: - Because the cursor is not isolated during its lifetime, intervening write operations may result in a cursor that returns a single document [#single-document-def]_ more than once. - To handle this situation, see the information on :wiki:`snapshot mode - `. + To handle this situation, see the information on + :ref:`faq-developers-isolate-cursors`. + - The MongoDB server returns the query results in batches: diff --git a/source/faq/diagnostics.txt b/source/faq/diagnostics.txt index 9bf75fa0999..0e7c4d2ea7b 100644 --- a/source/faq/diagnostics.txt +++ b/source/faq/diagnostics.txt @@ -41,7 +41,7 @@ or replica set, that do not have other reasonable causes, check the TCP keep alive value, which Linux systems store as the ``tcp_keepalive_time`` value. A common keep alive period is ``7200`` seconds (2 hours); however, different distributions and OS X may have -different settings. For MongoDB, you will have better expeirences with +different settings. For MongoDB, you will have better experiences with shorter keepalive periods, on the order of ``300`` seconds (five minutes). On Linux systems you can use the following operation to check the diff --git a/source/faq/fundamentals.txt b/source/faq/fundamentals.txt index 7a21f03edd5..6631f36befc 100644 --- a/source/faq/fundamentals.txt +++ b/source/faq/fundamentals.txt @@ -37,14 +37,14 @@ Do MongoDB databases have tables? --------------------------------- Instead of tables, a MongoDB database stores its data in -:term:`collections `, which are the rough equivalent of RDMS +:term:`collections `, which are the rough equivalent of RDBMS tables. A collection holds one or more :term:`documents `, which corresponds to a record or a row in a relational database table, and each document has one or more fields, which corresponds to a column in a relational database table. -Collections have important differences from RDMS tables. Documents in a +Collections have important differences from RDBMS tables. Documents in a single collection may have a unique combination and set of fields. Documents need not have identical fields. You can add a field to some documents in a collection without adding that field to all documents in diff --git a/source/faq/mongo.txt b/source/faq/mongo.txt index b946fb46ccc..5e692879f97 100644 --- a/source/faq/mongo.txt +++ b/source/faq/mongo.txt @@ -125,7 +125,7 @@ You can add the logic for the prompt in the :ref:`.mongorc.js Can I edit long shell operations with an external text editor? -------------------------------------------------------------- -.. versionaddedd: 2.1 +.. versionadded: 2.1 You can use your own editor in the :program:`mongo` shell by setting the :envvar:`EDITOR` environment variable before starting the diff --git a/source/faq/storage.txt b/source/faq/storage.txt index 9fddb832327..ca7a93ca991 100644 --- a/source/faq/storage.txt +++ b/source/faq/storage.txt @@ -274,7 +274,7 @@ first. If your server runs out of disk space for journal files, the server process will exit. By default, :program:`mongod` creates journal files -in a sub-directorty of :setting:`dbpath` named ``journal``. You may +in a sub-directory of :setting:`dbpath` named ``journal``. You may elect to put the journal files on another storage device using a filesystem mount or a symlink. diff --git a/source/index.txt b/source/index.txt index b76c13cbfd5..c7fe5ed278f 100644 --- a/source/index.txt +++ b/source/index.txt @@ -157,7 +157,7 @@ MongoDB. The following pages from the wiki are especially useful: - `10gen `_ - `MongoDB Events `_ - - `Planet MongoDB `_ + - `Planet MongoDB `_ - :wiki:`MongoDB Masters ` - `Slides and Video `_ - :wiki:`Hosting Center ` diff --git a/source/reference/explain.txt b/source/reference/explain.txt index 4487bdce218..27578f1ac90 100644 --- a/source/reference/explain.txt +++ b/source/reference/explain.txt @@ -298,7 +298,7 @@ Sharded Collections Output .. data:: millisShardAvg - :data:`millisShardAvt` is a number that reports the average + :data:`millisShardAvg` is a number that reports the average time in millisecond for the query to run on each shard. .. data:: numQueries diff --git a/source/release-notes/2.0.txt b/source/release-notes/2.0.txt index 55538494425..27f6e53c6a7 100644 --- a/source/release-notes/2.0.txt +++ b/source/release-notes/2.0.txt @@ -135,7 +135,7 @@ Index Performance Enhancements ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ v2.0 includes significant improvements to the -:wiki:`index structures `. +:doc:`index `. Indexes are often 25% smaller and 25% faster (depends on the use case). When upgrading from previous versions, the benefits of the new index type are realized only if you create a new index or re-index an old one.