Skip to content

Commit acf720c

Browse files
DOCSP-16494 consistent purpose statements (#103)
* changed/made purpose statements to be consistent
1 parent 1c333e3 commit acf720c

40 files changed

+93
-53
lines changed

source/fundamentals/aggregation.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ Overview
1515

1616
.. _java-aggregation:
1717

18+
In this guide, you can learn how to use **aggregation operations** in the MongoDB Java driver.
19+
1820
Aggregation operations process data in your MongoDB collections and return computed results. MongoDB's Aggregation
1921
framework is modeled on the concept of data processing pipelines. Documents enter a multi-staged pipeline that
2022
transforms the documents into an aggregated result.

source/fundamentals/auth.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Authentication Mechanisms
1313
Overview
1414
--------
1515

16-
In this guide, we show you how to authenticate with MongoDB using each
17-
**authentication mechanism** available in MongoDB Community Edition.
16+
In this guide, you can learn how to authenticate with MongoDB using each
17+
**authentication mechanism** available in the MongoDB Community Edition.
1818
Authentication mechanisms are processes by which the driver and server
1919
confirm identity and establish trust to ensure security.
2020

source/fundamentals/builders/aggregates.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Aggregates Builders
1515
Overview
1616
--------
1717

18-
This guide provides an overview of the :java-docs:`Aggregates <apidocs/mongodb-driver-core/com/mongodb/client/model/Aggregates>`
18+
In this guide, you can learn how to use the :java-docs:`Aggregates <apidocs/mongodb-driver-core/com/mongodb/client/model/Aggregates>`
1919
class which provides static factory methods that build :manual:`aggregation pipeline
20-
stages </reference/operator/aggregation/>`.
20+
stages </reference/operator/aggregation/>` in the MongoDB Java driver.
2121

2222
For a more thorough introduction to Aggregation, see our :ref:`Aggregation guide <java-aggregation>`.
2323

source/fundamentals/builders/filters.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Filters Builders
1515
Overview
1616
--------
1717

18-
In this guide, we show you how to use **builders** to specify
19-
**filters** for your queries.
18+
In this guide, you can learn how to use **builders** to specify
19+
**filters** for your queries in the MongoDB Java driver.
2020

2121
Builders are classes provided by the MongoDB Java driver that help you
2222
construct :ref:`Bson <bson>` objects. To learn more, see our :doc:`guide

source/fundamentals/builders/indexes.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ Indexes Builders
1515
Overview
1616
--------
1717

18-
In this guide, we show you how to specify **indexes** using the Java
19-
Driver :doc:`builders </fundamentals/builders/>`. Index builders provide
20-
helper methods for the following types of indexes:
18+
In this guide, you can learn how to specify **indexes** using
19+
:doc:`builders </fundamentals/builders/>` in the MongoDB Java driver.
20+
The ``Indexes`` builder provides helper methods for constructing the
21+
following types of indexes:
2122

2223
- :ref:`Ascending Indexes <ascending-indexes>`
2324
- :ref:`Descending Indexes <descending-indexes>`

source/fundamentals/builders/projections.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Projections Builders
1515
Overview
1616
--------
1717

18-
In this guide, we show you how to specify **projections** using the Java
19-
Driver :doc:`builders </fundamentals/builders/>`.
18+
In this guide, you can learn how to specify **projections** using
19+
:doc:`builders </fundamentals/builders/>` in the MongoDB Java driver.
2020

2121
MongoDB supports **field projection**, specifying which fields to include and exclude when returning results from a
2222
query. Projection in MongoDB follows some basic rules:

source/fundamentals/builders/sort.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Sorts Builders
1515
Overview
1616
--------
1717

18-
In this guide, we show you how to specify **sort criteria** for your
19-
queries using **builders**.
18+
In this guide, you can learn how to specify **sort criteria** for your
19+
queries using **builders** in the MongoDB Java driver.
2020

2121
Sort criteria are the rules MongoDB uses to sort your data. Some
2222
examples of sort criteria are:

source/fundamentals/builders/updates.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Updates Builders
1515
Overview
1616
--------
1717

18-
This guide shows you how to specify **updates** using the Java Driver
19-
:doc:`builders </fundamentals/builders/>`.
18+
In this guide, you can learn how to specify **updates** using
19+
:doc:`builders </fundamentals/builders/>` in the MongoDB Java driver.
2020

2121
Update builders provide helper methods for the following types of updates:
2222

source/fundamentals/collations.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Collations
1313
Overview
1414
--------
1515

16-
This guide shows you how to use **collations** with MongoDB to order your
16+
In this guide, you can learn how to use **collations** with MongoDB to order your
1717
query or aggregation operation results by string values. A collation is a set
1818
of character ordering and matching rules that apply to a specific language and
1919
locale.

source/fundamentals/connection.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ Connection Guide
1818
Overview
1919
--------
2020

21-
This guide shows you how to connect to a MongoDB instance or replica set
22-
deployment using the driver.
21+
In this guide, you can learn how to connect to a MongoDB instance or
22+
replica set deployment using the MongoDB Java driver.
2323

2424
For information about authenticating with a MongoDB instance,
2525
see :doc:`Authentication </fundamentals/auth>`. To learn more about using

0 commit comments

Comments
 (0)