Skip to content

Commit 72f7ef1

Browse files
made opening sentence uniform (#37)
1 parent 93f4f7a commit 72f7ef1

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

source/usage-examples/bulkWrite.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Perform Bulk Operations
44

55
.. default-domain:: mongodb
66

7-
You can perform bulk write operations on a collection using the
7+
You can perform bulk write operations on a collection by using the
88
``BulkWrite()`` method.
99

1010
The following example specifies a slice of ``WriteModels`` and an option

source/usage-examples/command.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Run a Command
44

55
.. default-domain:: mongodb
66

7-
You can run commands directly on your MongoDB server using the
7+
You can run commands directly on your MongoDB server by using the
88
``RunCommand()`` method.
99

1010
The following example passes a document containing the ``"dbStats"``

source/usage-examples/count.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Count Documents
55
.. default-domain:: mongodb
66

77
You can get an approximation on the number of documents in a
8-
collection using the ``EstimatedDocumentCount()`` method and an exact
9-
number of documents in a collection using the ``CountDocuments()``
8+
collection by using the ``EstimatedDocumentCount()`` method and an exact
9+
number of documents in a collection by using the ``CountDocuments()``
1010
method.
1111

1212
The following example uses the ``EstimatedDocumentCount()`` method to

source/usage-examples/deleteOne.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Delete a Document
44

55
.. default-domain:: mongodb
66

7-
You can delete a document in a collection using the ``DeleteOne()``
7+
You can delete a document in a collection by using the ``DeleteOne()``
88
method.
99

1010
The following example specifies a query filter to the ``DeleteOne()``

source/usage-examples/struct-tagging.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Use Struct Tags
55
.. default-domain:: mongodb
66

77
You can specify the way that the Go Driver converts Go
8-
structs to :manual:`BSON </reference/bson-types/>` using struct tags.
8+
structs to :manual:`BSON </reference/bson-types/>` by using struct tags.
99

1010
The following code declares a ``BlogPost`` struct, where the ``WordCount`` field
1111
has a struct tag that sets a custom BSON field name of ``word_count``.

0 commit comments

Comments
 (0)