Skip to content

Commit 3f5cec0

Browse files
committed
link fixes
1 parent a249803 commit 3f5cec0

File tree

1 file changed

+5
-6
lines changed
  • source/fundamentals/crud/write-operations

1 file changed

+5
-6
lines changed

source/fundamentals/crud/write-operations/update.txt

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The following sections describe these methods in more detail.
4444
Many of the methods in this guide have multiple overloads. The examples
4545
in this guide use the simplest overload for demonstration purposes. For
4646
more information about the available overloads, see the
47-
`API documentation. {+new-api-root+}/index.html>`__
47+
`API documentation. <{+new-api-root+}/index.html>`__
4848

4949
.. tip:: Interactive Lab
5050

@@ -73,7 +73,7 @@ methods all accept the following parameters:
7373
- An instance of the ``FilterDefinition`` class that specifies the documents to update.
7474
To learn how to create a query filter, see :ref:`csharp-specify-query`.
7575

76-
**Data Type:** `FilterDefinition <{+new-api-root+>/MongoDB.Driver/MongoDB.Driver.FilterDefinition-1.html>`__
76+
**Data Type:** `FilterDefinition <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.FilterDefinition-1.html>`
7777

7878
* - ``update``
7979
- An instance of the ``UpdateDefinition`` class. This object specifies the kind of update
@@ -189,8 +189,8 @@ accepts the following parameter:
189189

190190
* - ``pipeline``
191191
- A ``PipelineDefinition`` instance that represents the update pipeline. To create
192-
a ``PipelineDefinition`` object, create a BSON object for each update operation you
193-
want to perform, then pass these objects to the ``Pipeline.Create()`` method.
192+
a ``PipelineDefinition`` object, create a BSON document for each update operation you
193+
want to perform, then pass these documents to the ``Pipeline.Create()`` method.
194194

195195
**Data Type:** ``PipelineDefinition<TDocument, TDocument>``
196196

@@ -274,8 +274,7 @@ The ``UpdateOptions`` class contains the following properties:
274274
See :manual:`the MongoDB server manual</reference/command/update/#update-elements-match-arrayfilters-criteria>`
275275
for more information.
276276

277-
**Data Type:** IEnumerable<`ArrayFilterDefinition <{+new-api-root+>/MongoDB.Driver/MongoDB.Driver.ArrayFilterDefinition.html>`__>
278-
**Data Type**: Action<`ClusterBuilder <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.Core.Configuration.ClusterBuilder.html>`__>
277+
**Data Type:** IEnumerable<`ArrayFilterDefinition <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.ArrayFilterDefinition.html>`__>
279278

280279
* - ``BypassDocumentValidation``
281280
- Specifies whether the update operation bypasses document validation. This lets you

0 commit comments

Comments
 (0)