diff --git a/source/applications.txt b/source/applications.txt index 34c5575faba..ccc1532b38c 100644 --- a/source/applications.txt +++ b/source/applications.txt @@ -3,7 +3,7 @@ Using MongoDB ============= These documents address application development with MongoDB. Most -applications interact with MongoDB using client libraries (drivers.) +applications interact with MongoDB using client libraries (drivers). The drivers provide language-specific interfaces to the database for use in your applications. The :doc:`/applications/drivers` page contains more information about the drivers themselves and links to diff --git a/source/includes/geospatial-coordinates.rst b/source/includes/geospatial-coordinates.rst index ba910f66fff..43f8afcb105 100644 --- a/source/includes/geospatial-coordinates.rst +++ b/source/includes/geospatial-coordinates.rst @@ -9,7 +9,7 @@ that holds a 2 dimensional array. The preferred form is: [ x, y ] Consistency is crucial: all documents must store the values in the -same order. you may also use an embeded document, as in: +same order. You may also use an embedded document, as in: .. code-block:: javascript diff --git a/source/index.txt b/source/index.txt index a1b2113fdc3..c67576fb2d1 100644 --- a/source/index.txt +++ b/source/index.txt @@ -139,7 +139,7 @@ MongoDB. The following pages from the wiki are especially useful: - :wiki:`Introduction` - :wiki:`Downloads` - :wiki:`Features` - - :wiki:`SQL to MongoDB Mapping ` + - :wiki:`SQL to MongoDB Mapping ` - :wiki:`Developer Documentation ` diff --git a/source/use-cases/storing-log-data.txt b/source/use-cases/storing-log-data.txt index 5eec59187d2..b6aaedd110b 100644 --- a/source/use-cases/storing-log-data.txt +++ b/source/use-cases/storing-log-data.txt @@ -579,7 +579,7 @@ a pipeline that: .. [#sql-aggregation-equivalents] To translate statements from the :doc:`aggregation framework ` to SQL, - you can consider the :agg:pipeline:`$match` equivelent to + you can consider the :agg:pipeline:`$match` equivalent to ``WHERE``, :agg:pipeline:`$project` to ``SELECT``, and :agg:pipeline:`$group` to ``GROUP BY``.