Skip to content

Commit 3add653

Browse files
committed
JS feedback
1 parent 404bf92 commit 3add653

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

source/write/insert.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ with a unique field value.
5353

5454
MongoDB allows you to manage this field in two ways:
5555

56-
- You can set this field for each document yourself, ensuring each
57-
``_id`` field value is unique.
58-
- You can let the driver automatically generate unique ``ObjectId``
59-
values for each document ``_id``.
56+
- Set the ``_id`` field for each document yourself, ensuring each
57+
value is unique.
58+
- Let the driver automatically generate unique ``ObjectId``
59+
values for each document ``_id`` field.
6060

6161
Unless you can guarantee uniqueness, we recommend
6262
letting the driver automatically generate ``_id`` values.
@@ -91,7 +91,7 @@ Insert Multiple Documents
9191
-------------------------
9292

9393
To add multiple documents to a MongoDB collection, call the ``MongoDB\Collection::insertMany()``
94-
method and pass an array that stores the documents you want to add.
94+
method and pass an array that contains the documents you want to add.
9595

9696
The following example inserts two documents into the ``restaurants`` collection:
9797

@@ -117,7 +117,7 @@ you can set in the array:
117117
- Description
118118

119119
* - ``bypassDocumentValidation``
120-
- | If set to ``true``, allows the write to opt out of
120+
- | If set to ``true``, allows the write operation to opt out of
121121
:manual:`document-level validation </core/schema-validation>`.
122122
| Defaults to ``false``.
123123
| **Type**: ``bool``

0 commit comments

Comments
 (0)