@@ -92,7 +92,7 @@ Insert Multiple Documents
9292-------------------------
9393
9494To 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
9797The 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
141141You can set the preceding settings on the ``insert_many`` method
142142by passing a ``Hash`` as a parameter to the method call. You can also use the
0 commit comments