Skip to content

Docs-978 mongodb 2.3.2 typo & link fixes #547

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 2 commits into from
Jan 11, 2013
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/about.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ manuals are available for offline use:

- :hardlink:`MongoDB Reference Manual <mongodb-reference-info.tar.gz>` (tar.gz)

- :hardlink:`MongoDB CURD Operation Introduction <mongodb-crud-info.tar.gz>` (tar.gz)
- :hardlink:`MongoDB CRUD Operation Introduction <mongodb-crud-info.tar.gz>` (tar.gz)

.. important:: The ``texinfo`` manuals are experimental. If you find
an issue with one of these editions, please file an issue in the
Expand Down
6 changes: 3 additions & 3 deletions source/administration/vulnerability-notification.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ Jira
communication regarding MongoDB and related products.

Submit a ticket in the "`Core Server Security
<https://jira.mongodb.org/SECURITY/>`_" project, at:
<https://jira.mongodb.org/SECURITY/>. The ticket number will become
<https://jira.mongodb.org/browse/SECURITY/>`_" project, at:
<https://jira.mongodb.org/browse/SECURITY/>. 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
<https://jira.mongodb.org/SECURITY/>`_ project.
<https://jira.mongodb.org/browse/SECURITY/>`_ project.

Email
~~~~~
Expand Down
7 changes: 4 additions & 3 deletions source/core/read-operations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 </aggregation>` operations that
do not return a cursor but have similar properties as queries. These
commands include :dbcommand:`aggregate`, :dbcommand:`count`, and
Expand Down Expand Up @@ -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
<How to do Snapshotted Queries in the Mongo Database>`.
To handle this situation, see the information on
:ref:`faq-developers-isolate-cursors`.


- The MongoDB server returns the query results in batches:

Expand Down
2 changes: 1 addition & 1 deletion source/faq/diagnostics.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions source/faq/fundamentals.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ Do MongoDB databases have tables?
---------------------------------

Instead of tables, a MongoDB database stores its data in
:term:`collections <collection>`, which are the rough equivalent of RDMS
:term:`collections <collection>`, which are the rough equivalent of RDBMS
tables. A collection holds one or more :term:`documents
<document>`, 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
Expand Down
2 changes: 1 addition & 1 deletion source/faq/mongo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion source/faq/storage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion source/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ MongoDB. The following pages from the wiki are especially useful:

- `10gen <http://10gen.com>`_
- `MongoDB Events <http://www.mongodb.org/events/>`_
- `Planet MongoDB <http://planet.mongodb..org/>`_
- `Planet MongoDB <http://planet.mongodb.org/>`_
- :wiki:`MongoDB Masters <MongoDB+Masters>`
- `Slides and Video <http://www.10gen.com/presentations/>`_
- :wiki:`Hosting Center <Hosting+Center>`
Expand Down
2 changes: 1 addition & 1 deletion source/reference/explain.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion source/release-notes/2.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Index Performance Enhancements
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

v2.0 includes significant improvements to the
:wiki:`index structures <Index Versions>`.
:doc:`index </tutorial/roll-back-to-v1.8-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.
Expand Down