@@ -147,11 +147,11 @@ upper-right to set the language of the following examples.
147147 This page uses the following `MongoDB PHP Library
148148 <https://www.mongodb.com/docs/php-library/current/>`_ methods:
149149
150- - :phpmethod:`MongoDB\\Collection::updateOne() <phpmethod.MongoDB\\Collection::updateOne>`
150+ - :phpmethod:`MongoDB\\Collection::updateOne() <phpmethod.MongoDB\\Collection::updateOne() >`
151151
152- - :phpmethod:`MongoDB\\Collection::updateMany() <phpmethod.MongoDB\\Collection::updateMany>`
152+ - :phpmethod:`MongoDB\\Collection::updateMany() <phpmethod.MongoDB\\Collection::updateMany() >`
153153
154- - :phpmethod:`MongoDB\\Collection::replaceOne() <phpmethod.MongoDB\\Collection::replaceOne>`
154+ - :phpmethod:`MongoDB\\Collection::replaceOne() <phpmethod.MongoDB\\Collection::replaceOne() >`
155155
156156 |populate-inventory|
157157
@@ -575,7 +575,7 @@ Update a Single Document
575575 :tabid: php
576576
577577 The following example uses the :phpmethod:`updateOne()
578- <phpmethod.MongoDB\\Collection::updateOne>` method on the
578+ <phpmethod.MongoDB\\Collection::updateOne() >` method on the
579579 ``inventory`` collection to update the *first* document where
580580 ``item`` equals ``"paper"``:
581581
@@ -691,7 +691,7 @@ Update Multiple Documents
691691 :tabid: php
692692
693693 The following example uses the :phpmethod:`updateMany()
694- <phpmethod.MongoDB\\Collection::updateMany>` method on the
694+ <phpmethod.MongoDB\\Collection::updateMany() >` method on the
695695 ``inventory`` collection to update all documents where ``qty`` is
696696 less than ``50``:
697697
@@ -813,7 +813,7 @@ Replace a Document
813813 To replace the entire content of a document except for the ``_id``
814814 field, pass an entirely new document as the second argument to
815815 :phpmethod:`replaceOne()
816- <phpmethod.MongoDB\\Collection::replaceOne>`.
816+ <phpmethod.MongoDB\\Collection::replaceOne() >`.
817817
818818 .. include:: /includes/fact-update-replace-example.rst
819819
@@ -1055,11 +1055,11 @@ Upsert Option
10551055 :tabid: php
10561056
10571057 If :phpmethod:`updateOne()
1058- <phpmethod.MongoDB\\Collection::updateOne>`,
1058+ <phpmethod.MongoDB\\Collection::updateOne() >`,
10591059 :phpmethod:`updateMany()
1060- <phpmethod.MongoDB\\Collection::updateMany>`, or
1060+ <phpmethod.MongoDB\\Collection::updateMany() >`, or
10611061 :phpmethod:`replaceOne()
1062- <phpmethod.MongoDB\\Collection::replaceOne>` includes ``upsert =>
1062+ <phpmethod.MongoDB\\Collection::replaceOne() >` includes ``upsert =>
10631063 true`` **and** no documents match the specified filter, then the
10641064 operation creates a new document and inserts it. If there are
10651065 matching documents, then the operation modifies or replaces the
@@ -1252,11 +1252,11 @@ requested from MongoDB for write operations. For details, see
12521252
12531253 .. seealso::
12541254
1255- - :phpmethod:`MongoDB\\Collection::updateOne() <phpmethod.MongoDB\\Collection::updateOne>`
1255+ - :phpmethod:`MongoDB\\Collection::updateOne() <phpmethod.MongoDB\\Collection::updateOne() >`
12561256
1257- - :phpmethod:`MongoDB\\Collection::updateMany() <phpmethod.MongoDB\\Collection::updateMany>`
1257+ - :phpmethod:`MongoDB\\Collection::updateMany() <phpmethod.MongoDB\\Collection::updateMany() >`
12581258
1259- - :phpmethod:`MongoDB\\Collection::replaceOne() <phpmethod.MongoDB\\Collection::replaceOne>`
1259+ - :phpmethod:`MongoDB\\Collection::replaceOne() <phpmethod.MongoDB\\Collection::replaceOne() >`
12601260
12611261 - :ref:`additional-updates`
12621262
0 commit comments