Skip to content

Commit d8cb575

Browse files
committed
NR feedback
1 parent cbfb1b5 commit d8cb575

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Diff for: source/write/insert.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Insert Multiple Documents
9292
-------------------------
9393

9494
To add multiple documents to a MongoDB collection, call the ``insert_many``
95-
function and pass a list of documents you want to insert.
95+
method and pass a list of documents you want to insert.
9696

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

@@ -117,26 +117,26 @@ configure the ``insert_one`` operation:
117117
:widths: 30 70
118118
:header-rows: 1
119119

120-
* - Method
120+
* - Option
121121
- Description
122122

123123
* - ``bypass_document_validation``
124-
- | Instructs the driver whether or not to ignore
125-
:manual:`document-level validation </core/schema-validation>`.
124+
- | Instructs the driver whether to ignore document-level validation. For more information,
125+
see :manual:`Schema Validation </core/schema-validation>` in the {+mdb-server+} manual.
126126
| Defaults to ``false``.
127127

128128
* - ``comment``
129129
- | Sets a comment to attach to the operation. For more information, see the :manual:`insert command
130-
fields </reference/command/insert/#command-fields>` guide in the
131-
{+mdb-server+} manual for more information.
130+
fields </reference/command/insert/#command-fields>` guide in the {+mdb-server+} manual.
132131

133132
* - ``session``
134133
- | Sets the session to use for the operation. To learn more about sessions, see
135134
:manual:`Client Sessions and Causal Consistency Guarantees </core/read-isolation-consistency-recency/#std-label-sessions>`
136135
in the {+mdb-server+} manual.
137136

138137
* - ``write_concern``
139-
- | Sets the :manual:`write concern </core/write-concern>` for the operation.
138+
- | Sets the write concern for the operation. For more information, see the
139+
:manual:`Write Concern </core/write-concern>` guide in the {+mdb-server+} manual.
140140

141141
You can set the preceding settings on the ``insert_many`` method
142142
by passing a ``Hash`` as a parameter to the method call. You can also use the

0 commit comments

Comments
 (0)