Skip to content

Commit e634bc8

Browse files
committed
first pass fixes
1 parent 063a59b commit e634bc8

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

snooty.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ intersphinx = [
99

1010
toc_landing_pages = [
1111
"/reference/class/MongoDBClient",
12+
"/reference/class/MongoDBClientBulkWrite",
1213
"/reference/class/MongoDBCollection",
1314
"/reference/class/MongoDBDatabase",
1415
"/reference/class/MongoDBGridFSBucket",

source/includes/extracts-bulkwriteexception.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ref: bulkwriteexception-client-result
1515
content: |
1616
If a :php:`MongoDB\Driver\Exception\BulkWriteCommandException
1717
<mongodb-driver-exception-bulkwritecommandexception>` is thrown, users should call
18-
:php:`getWriteErrors() <mongodb-driver-exception-bulkwritecommandexception.getwriteerrors>` and
18+
:php:`getWriteErrors() <mongodb-driver-bulkwritecommandexception.getwriteerrors>` and
1919
inspect the information in the returned array to determine the nature of the error.
2020
2121
For example, a write operation may have been successfully applied to the

source/includes/extracts-error.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ content: |
1111
:php:`MongoDB\Driver\Exception\BulkWriteCommandException
1212
<mongodb-driver-exception-bulkwritecommandexception>` for errors related to the write
1313
operation. Users should inspect the value returned by :php:`getWriteErrors()
14-
<mongodb-driver-exception-bulkwritecommandexception.getwriteerrors>` to determine the nature of the
14+
<mongodb-driver-bulkwritecommandexception.getwriteerrors>` to determine the nature of the
1515
error.
1616
---
1717
ref: error-driver-invalidargumentexception

source/write/bulk-write.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Collection Bulk Write
5858
---------------------
5959

6060
To run a bulk write operation, pass an array of write operations to the
61-
``MongoDB\Collection::bulkWrite()`` method. Use the following syntax to
61+
:phpmethod:`MongoDB\Collection::bulkWrite()` method. Use the following syntax to
6262
specify the write operations:
6363

6464
.. code-block:: php
@@ -230,10 +230,10 @@ Client Bulk Write
230230

231231
When using {+library-short+} v2.1 and connecting to a deployment
232232
running {+mdb-server+} 8.0 or later, you can use the
233-
``MongoDB\Client::bulkWrite()`` method to write to multiple databases
233+
:phpmethod:`MongoDB\Client::bulkWrite()` method to write to multiple databases
234234
and collections in the same cluster. This method performs all write
235235
operations in a single call. To learn more about this feature, see the
236-
:manual:`Mongo.bulkWrite() <reference/method/Mongo.bulkWrite/>`
236+
:manual:`Mongo.bulkWrite() </reference/method/Mongo.bulkWrite/>`
237237
reference in the {+mdb-server+} manual.
238238

239239
First, instantiate a ``MongoDB\ClientBulkWrite`` instance that

0 commit comments

Comments
 (0)