Skip to content

Commit 069f67e

Browse files
authored
DOCSP-48687 - Standardize API source constants (#119)
1 parent 0b06457 commit 069f67e

27 files changed

+73
-73
lines changed

Diff for: snooty.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ driver-short = "Java Reactive Streams driver"
2323
driver-long = "MongoDB Java Reactive Streams Driver"
2424
version = "5.4"
2525
full-version = "{+version+}.0"
26-
api = "https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs"
27-
rs-driver-api = "{+api+}/mongodb-driver-reactivestreams/com/mongodb/reactivestreams/client"
28-
core-api = "{+api+}/mongodb-driver-core/com/mongodb"
26+
api-root = "https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs"
27+
driver-api = "{+api-root+}/mongodb-driver-reactivestreams/com/mongodb/reactivestreams/client"
28+
core-api = "{+api-root+}/mongodb-driver-core/com/mongodb"
2929
rs-docs = "https://www.reactive-streams.org/reactive-streams-1.0.4-javadoc/org/reactivestreams"
3030
driver-source-gh = "https://github.com/mongodb/mongo-java-driver"
3131
java-rs = "Java Reactive Streams"

Diff for: source/connect-to-mongo/choose-connection-target.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,4 @@ API Documentation
142142
To learn more about creating a ``MongoClient`` instance in the {+driver-short+},
143143
see the following API documentation:
144144

145-
- `MongoClient <{+rs-driver-api+}/MongoClients.html>`__
145+
- `MongoClient <{+driver-api+}/MongoClients.html>`__

Diff for: source/connect-to-mongo/connection-options.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ General Configuration
304304

305305
* - **uuidRepresentation**
306306
- | Sets the mechanism the {+driver-short+} uses to encode instances of
307-
| UUID. See the `Uuid Representation <{+api+}/bson/org/bson/UuidRepresentation.html>`__ API documentation for a list of all
307+
| UUID. See the `Uuid Representation <{+api-root+}/bson/org/bson/UuidRepresentation.html>`__ API documentation for a list of all
308308
| valid options.
309309
|
310310
| **Data Type**: {+string-data-type+}

Diff for: source/connect-to-mongo/create-a-mongo-client.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,4 @@ API Documentation
117117
To learn more about creating a ``MongoClient`` instance in the {+driver-short+},
118118
see the following API documentation:
119119

120-
- `MongoClient <{+rs-driver-api+}/MongoClients.html>`__
120+
- `MongoClient <{+driver-api+}/MongoClients.html>`__

Diff for: source/connect-to-mongo/network-compression.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ API Documentation
9292
To learn more about any of the methods or types discussed in this
9393
guide, see the following API documentation:
9494

95-
- `MongoClient <{+rs-driver-api+}/MongoClient.html>`__
95+
- `MongoClient <{+driver-api+}/MongoClient.html>`__
9696
- `createSnappyCompressor() <{+core-api+}/MongoCompressor.html#createSnappyCompressor()>`__
97-
- `createZlibCompressor() <{+api+}//mongodb-driver-core/com/mongodb/MongoCompressor.html#createZlibCompressor()>`__
97+
- `createZlibCompressor() <{+api-root+}//mongodb-driver-core/com/mongodb/MongoCompressor.html#createZlibCompressor()>`__
9898
- `createZstdCompressor() <{+core-api+}/MongoCompressor.html#createZstdCompressor()>`__

Diff for: source/connect-to-mongo/stable-api.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,4 @@ following API documentation:
128128
- `ServerAddress <{+core-api+}/ServerAddress.html>`__
129129
- `MongoClientSettings <{+core-api+}/MongoClientSettings.html>`__
130130
- `MongoClientSettings.Builder <{+core-api+}/MongoClientSettings.Builder.html>`__
131-
- `MongoClients <{+rs-driver-api+}/MongoClients.html>`__
131+
- `MongoClients <{+driver-api+}/MongoClients.html>`__

Diff for: source/data-formats/time-series.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ API Documentation
165165
To learn more about the methods mentioned in this guide, see the following
166166
API documentation:
167167

168-
- `createCollection() <{+rs-driver-api+}/MongoDatabase.html#createCollection(java.lang.String)>`__
169-
- `listCollections() <{+rs-driver-api+}/MongoDatabase.html#listCollections()>`__
170-
- `insertOne() <{+rs-driver-api+}/MongoCollection.html#insertOne(TDocument)>`__
171-
- `insertMany() <{+rs-driver-api+}/MongoCollection.html#insertMany(java.util.List)>`__
168+
- `createCollection() <{+driver-api+}/MongoDatabase.html#createCollection(java.lang.String)>`__
169+
- `listCollections() <{+driver-api+}/MongoDatabase.html#listCollections()>`__
170+
- `insertOne() <{+driver-api+}/MongoCollection.html#insertOne(TDocument)>`__
171+
- `insertMany() <{+driver-api+}/MongoCollection.html#insertMany(java.util.List)>`__

Diff for: source/index.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ MongoDB Java Reactive Streams Documentation
4040
Issues & Help </issues-and-help>
4141
Compatibility </compatibility>
4242
Upgrade </upgrade>
43-
API Documentation <{+api+}/mongodb-driver-reactivestreams/>
43+
API Documentation <{+api-root+}/mongodb-driver-reactivestreams/>
4444

4545
Overview
4646
--------
@@ -135,7 +135,7 @@ API Documentation
135135
-----------------
136136

137137
For detailed information about types and methods in the {+driver-short+}, see
138-
the `API documentation <{+api+}/mongodb-driver-reactivestreams/>`__.
138+
the `API documentation <{+api-root+}/mongodb-driver-reactivestreams/>`__.
139139

140140
If you need to make synchronous calls between your application and MongoDB, use
141141
the :driver:`MongoDB Java Driver </java/sync/current/>` instead of the

Diff for: source/monitoring.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ API Documentation
418418
For more information about the classes and methods mentioned in this document, see
419419
the following API Documentation:
420420

421-
- `MongoClients <{+rs-driver-api+}/MongoClients.html>`__
421+
- `MongoClients <{+driver-api+}/MongoClients.html>`__
422422
- `MongoClientSettings <{+core-api+}/MongoClientSettings.html>`__
423423
- `CommandListener <{+core-api+}/event/CommandListener.html>`__
424424
- `CommandStartedEvent <{+core-api+}/event/CommandStartedEvent.html>`__

Diff for: source/read-write-configuration.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -195,12 +195,12 @@ API Documentation
195195
To learn more about any of the methods or types discussed in this
196196
guide, see the following API documentation:
197197

198-
- `WriteConcern <{+api+}//mongodb-driver-core/com/mongodb/WriteConcern.html>`__
199-
- `MongoDatabase.withWriteConcern <{+rs-driver-api+}/MongoDatabase.html#withWriteConcern(com.mongodb.WriteConcern)>`__
200-
- `MongoCollection.withWriteConcern <{+rs-driver-api+}/MongoCollection.html#withWriteConcern(com.mongodb.WriteConcern)>`__
198+
- `WriteConcern <{+api-root+}//mongodb-driver-core/com/mongodb/WriteConcern.html>`__
199+
- `MongoDatabase.withWriteConcern <{+driver-api+}/MongoDatabase.html#withWriteConcern(com.mongodb.WriteConcern)>`__
200+
- `MongoCollection.withWriteConcern <{+driver-api+}/MongoCollection.html#withWriteConcern(com.mongodb.WriteConcern)>`__
201201
- `ReadConcern <{+core-api+}/ReadConcern.html>`__
202-
- `MongoDatabase.withReadConcern <{+rs-driver-api+}/MongoDatabase.html#withReadConcern(com.mongodb.ReadConcern)>`__
203-
- `MongoCollection.withReadConcern <{+rs-driver-api+}/MongoCollection.html#withReadPreference(com.mongodb.ReadPreference)>`__
202+
- `MongoDatabase.withReadConcern <{+driver-api+}/MongoDatabase.html#withReadConcern(com.mongodb.ReadConcern)>`__
203+
- `MongoCollection.withReadConcern <{+driver-api+}/MongoCollection.html#withReadPreference(com.mongodb.ReadPreference)>`__
204204
- `ReadPreference <{+core-api+}/ReadPreference.html>`__
205-
- `MongoDatabase.withReadPreference <{+rs-driver-api+}/MongoDatabase.html#withReadPreference(com.mongodb.ReadPreference)>`__
206-
- `MongoDatabase.withReadPreference <{+rs-driver-api+}/MongoCollection.html#withReadPreference(com.mongodb.ReadPreference)>`__
205+
- `MongoDatabase.withReadPreference <{+driver-api+}/MongoDatabase.html#withReadPreference(com.mongodb.ReadPreference)>`__
206+
- `MongoDatabase.withReadPreference <{+driver-api+}/MongoCollection.html#withReadPreference(com.mongodb.ReadPreference)>`__

Diff for: source/read/change-streams.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ API Documentation
244244
To learn more about any of the methods or types discussed in this
245245
guide, see the following API documentation:
246246

247-
- `MongoClient.watch() <{+rs-driver-api+}/MongoClient.html#watch()>`__
248-
- `MongoCollection.watch() <{+rs-driver-api+}/MongoCollection.html#watch()>`__
249-
- `MongoDatabase.watch() <{+rs-driver-api+}/MongoDatabase.html#watch()>`__
250-
- `ChangeStreamPublisher <{+rs-driver-api+}/ChangeStreamPublisher.html>`__
247+
- `MongoClient.watch() <{+driver-api+}/MongoClient.html#watch()>`__
248+
- `MongoCollection.watch() <{+driver-api+}/MongoCollection.html#watch()>`__
249+
- `MongoDatabase.watch() <{+driver-api+}/MongoDatabase.html#watch()>`__
250+
- `ChangeStreamPublisher <{+driver-api+}/ChangeStreamPublisher.html>`__

Diff for: source/read/count-documents.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,6 @@ API Documentation
227227
To learn more about any of the methods or types discussed in this
228228
guide, see the following API documentation:
229229

230-
- `countDocuments() <{+rs-driver-api+}/MongoCollection.html#countDocuments()>`__
231-
- `estimatedDocumentCount() <{+rs-driver-api+}/MongoCollection.html#estimatedDocumentCount()>`__
232-
- `Collation <{+rs-driver-api+}/FindPublisher.html#collation(com.mongodb.client.model.Collation)>`__
230+
- `countDocuments() <{+driver-api+}/MongoCollection.html#countDocuments()>`__
231+
- `estimatedDocumentCount() <{+driver-api+}/MongoCollection.html#estimatedDocumentCount()>`__
232+
- `Collation <{+driver-api+}/FindPublisher.html#collation(com.mongodb.client.model.Collation)>`__

Diff for: source/read/cursors.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,6 @@ API Documentation
103103
To learn more about any of the methods or types discussed in this
104104
guide, see the following API documentation:
105105

106-
- `find() <{+rs-driver-api+}/MongoCollection.html#find()>`__
107-
- `FindPublisher <{+rs-driver-api+}/FindPublisher.html>`__
106+
- `find() <{+driver-api+}/MongoCollection.html#find()>`__
107+
- `FindPublisher <{+driver-api+}/FindPublisher.html>`__
108108
- `CursorType <{+core-api+}/CursorType.html>`__

Diff for: source/read/distinct.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ The following table describes some methods you can use to customize the
135135
- | Sets the maximum amount of time to allow the operation to run, in milliseconds.
136136

137137
For a complete list of methods you can use to modify the ``distinct()`` method, see
138-
the `DistinctPublisher <{+rs-driver-api+}/DistinctPublisher.html>`__ API documentation.
138+
the `DistinctPublisher <{+driver-api+}/DistinctPublisher.html>`__ API documentation.
139139

140140
The following example retrieves the distinct values of the ``name`` field for
141141
all documents that have a ``borough`` field value of ``"Bronx"`` and a
@@ -171,5 +171,5 @@ API Documentation
171171
To learn more about any of the methods or types discussed in this
172172
guide, see the following API documentation:
173173

174-
- `distinct() <{+rs-driver-api+}/MongoCollection.html#distinct(java.lang.String,java.lang.Class)>`__
175-
- `DistinctPublisher <{+rs-driver-api+}/DistinctPublisher.html>`__
174+
- `distinct() <{+driver-api+}/MongoCollection.html#distinct(java.lang.String,java.lang.Class)>`__
175+
- `DistinctPublisher <{+driver-api+}/DistinctPublisher.html>`__

Diff for: source/read/retrieve-data.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ time of 10 seconds:
170170
.blockLast();
171171

172172
For a full list of available arguments, see the
173-
`API documentation <{+rs-driver-api+}/FindPublisher.html>`__
173+
`API documentation <{+driver-api+}/FindPublisher.html>`__
174174
for the ``FindPublisher`` interface.
175175

176176
.. _java-rs-retrieve-additional-information:
@@ -189,6 +189,6 @@ API Documentation
189189
To learn more about any of the methods or types discussed in this
190190
guide, see the following API documentation:
191191

192-
- `find() <{+rs-driver-api+}/MongoCollection.html#find()>`__
193-
- `FindPublisher <{+rs-driver-api+}/FindPublisher.html>`__
194-
- `Collation <{+rs-driver-api+}/FindPublisher.html#collation(com.mongodb.client.model.Collation)>`__
192+
- `find() <{+driver-api+}/MongoCollection.html#find()>`__
193+
- `FindPublisher <{+driver-api+}/FindPublisher.html>`__
194+
- `Collation <{+driver-api+}/FindPublisher.html#collation(com.mongodb.client.model.Collation)>`__

Diff for: source/read/specify-a-query.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -265,5 +265,5 @@ API Documentation
265265
To learn more about any of the methods or types discussed in this
266266
guide, see the following API documentation:
267267

268-
- `find() <{+rs-driver-api+}/MongoCollection.html#find()>`__
269-
- `FindPublisher <{+rs-driver-api+}/FindPublisher.html>`__
268+
- `find() <{+driver-api+}/MongoCollection.html#find()>`__
269+
- `FindPublisher <{+driver-api+}/FindPublisher.html>`__

Diff for: source/read/specify-documents-to-return.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ API Documentation
173173
To learn more about any of the methods or types discussed in this
174174
guide, see the following API documentation:
175175

176-
- `FindPublisher <{+rs-driver-api+}/FindPublisher.html>`__
177-
- `find() <{+rs-driver-api+}/MongoCollection.html#find()>`__
178-
- `limit() <{+rs-driver-api+}/FindPublisher.html#limit(int)>`__
179-
- `sort() <{+rs-driver-api+}/FindPublisher.html#sort(org.bson.conversions.Bson)>`__
180-
- `skip() <{+rs-driver-api+}/FindPublisher.html#skip(int)>`__
176+
- `FindPublisher <{+driver-api+}/FindPublisher.html>`__
177+
- `find() <{+driver-api+}/MongoCollection.html#find()>`__
178+
- `limit() <{+driver-api+}/FindPublisher.html#limit(int)>`__
179+
- `sort() <{+driver-api+}/FindPublisher.html#sort(org.bson.conversions.Bson)>`__
180+
- `skip() <{+driver-api+}/FindPublisher.html#skip(int)>`__

Diff for: source/read/specify-fields-return.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -162,5 +162,5 @@ API Documentation
162162
To learn more about any of the methods or types discussed in this
163163
guide, see the following API Documentation:
164164

165-
- `find() <{+rs-driver-api+}/MongoCollection.html#find()>`__
166-
- `FindPublisher <{+rs-driver-api+}/FindPublisher.html>`__
165+
- `find() <{+driver-api+}/MongoCollection.html#find()>`__
166+
- `FindPublisher <{+driver-api+}/FindPublisher.html>`__

Diff for: source/security/enterprise-authentication.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,11 @@ You might need to specify one or more of the following additional
154154
instance, and pass the property name and value as parameters. Use the
155155
property name constants defined in the ``MongoCredential`` class:
156156

157-
- `SERVICE_NAME_KEY <{+api+}/apidocs/mongodb-driver-core/com/mongodb/MongoCredential.html#SERVICE_NAME_KEY>`__
158-
- `CANONICALIZE_HOST_NAME_KEY <{+api+}/apidocs/mongodb-driver-core/com/mongodb/MongoCredential.html#CANONICALIZE_HOST_NAME_KEY>`__
159-
- `JAVA_SUBJECT_KEY <{+api+}/apidocs/mongodb-driver-core/com/mongodb/MongoCredential.html#JAVA_SUBJECT_KEY>`__
160-
- `JAVA_SASL_CLIENT_PROPERTIES_KEY <{+api+}/apidocs/mongodb-driver-core/com/mongodb/MongoCredential.html#JAVA_SASL_CLIENT_PROPERTIES_KEY>`__
161-
- `JAVA_SUBJECT_PROVIDER_KEY <{+api+}/apidocs/mongodb-driver-core/com/mongodb/MongoCredential.html#JAVA_SUBJECT_PROVIDER_KEY>`__
157+
- `SERVICE_NAME_KEY <{+api-root+}/apidocs/mongodb-driver-core/com/mongodb/MongoCredential.html#SERVICE_NAME_KEY>`__
158+
- `CANONICALIZE_HOST_NAME_KEY <{+api-root+}/apidocs/mongodb-driver-core/com/mongodb/MongoCredential.html#CANONICALIZE_HOST_NAME_KEY>`__
159+
- `JAVA_SUBJECT_KEY <{+api-root+}/apidocs/mongodb-driver-core/com/mongodb/MongoCredential.html#JAVA_SUBJECT_KEY>`__
160+
- `JAVA_SASL_CLIENT_PROPERTIES_KEY <{+api-root+}/apidocs/mongodb-driver-core/com/mongodb/MongoCredential.html#JAVA_SASL_CLIENT_PROPERTIES_KEY>`__
161+
- `JAVA_SUBJECT_PROVIDER_KEY <{+api-root+}/apidocs/mongodb-driver-core/com/mongodb/MongoCredential.html#JAVA_SUBJECT_PROVIDER_KEY>`__
162162

163163
Select the :guilabel:`SERVICE_NAME_KEY` or :guilabel:`JAVA_SUBJECT_KEY` tab to
164164
see how to specify the corresponding property:

Diff for: source/whats-new.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ and features:
6767
.. replacement:: vector-type-example-link
6868

6969
To learn about this type, see the
70-
`BinaryVector <{+api+}/bson/org/bson/BinaryVector.html>`__
70+
`BinaryVector <{+api-root+}/bson/org/bson/BinaryVector.html>`__
7171
API documentation.
7272

7373
.. replacement:: update-replace-example-link

Diff for: source/write/bulk-writes.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ guide, see the following API documentation:
584584
- Collection Bulk Write
585585

586586
- `bulkWrite()
587-
<{+rs-driver-api+}/MongoCollection.html#bulkWrite(com.mongodb.reactivestreams.client.ClientSession,java.util.List)>`__
587+
<{+driver-api+}/MongoCollection.html#bulkWrite(com.mongodb.reactivestreams.client.ClientSession,java.util.List)>`__
588588
- `InsertOneModel <{+core-api+}/client/model/InsertOneModel.html>`__
589589
- `UpdateOneModel <{+core-api+}/client/model/UpdateOneModel.html>`__
590590
- `UpdateManyModel <{+core-api+}/client/model/UpdateManyModel.html>`__
@@ -598,7 +598,7 @@ guide, see the following API documentation:
598598
- Client Bulk Write
599599

600600
- `bulkWrite()
601-
<{+rs-driver-api+}/MongoCluster.html#bulkWrite(java.util.List,com.mongodb.client.model.bulk.ClientBulkWriteOptions)>`__
601+
<{+driver-api+}/MongoCluster.html#bulkWrite(java.util.List,com.mongodb.client.model.bulk.ClientBulkWriteOptions)>`__
602602
- `ClientNamespacedWriteModel <{+core-api+}/client/model/bulk/ClientNamespacedWriteModel.html>`__
603603
- `MongoNamespace <{+core-api+}/MongoNamespace.html>`__
604604
- `ClientBulkWriteOptions <{+core-api+}/client/model/bulk/ClientBulkWriteOptions.html>`__

Diff for: source/write/insert-documents.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -201,10 +201,10 @@ API Documentation
201201
To learn more about any of the methods or types discussed in this
202202
guide, see the following API documentation:
203203

204-
- `insertOne() <{+rs-driver-api+}/MongoCollection.html#insertOne(com.mongodb.reactivestreams.client.ClientSession,TDocument)>`__
204+
- `insertOne() <{+driver-api+}/MongoCollection.html#insertOne(com.mongodb.reactivestreams.client.ClientSession,TDocument)>`__
205205
- `insertMany()
206-
<{+rs-driver-api+}/MongoCollection.html#insertMany(com.mongodb.reactivestreams.client.ClientSession,java.util.List)>`__
206+
<{+driver-api+}/MongoCollection.html#insertMany(com.mongodb.reactivestreams.client.ClientSession,java.util.List)>`__
207207
- `InsertOneOptions <{+core-api+}/client/model/InsertOneOptions.html>`__
208208
- `InsertManyOptions
209209
<{+core-api+}/client/model/InsertManyOptions.html>`__
210-
- `BsonValue <{+api+}/bson/org/bson/BsonValue.html>`__
210+
- `BsonValue <{+api-root+}/bson/org/bson/BsonValue.html>`__

Diff for: source/write/replace-documents.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@ API Documentation
218218
To learn more about any of the methods or types discussed in this
219219
guide, see the following API documentation:
220220

221-
- `replaceOne() <{+rs-driver-api+}/MongoCollection.html#replaceOne(org.bson.conversions.Bson,TDocument)>`__
221+
- `replaceOne() <{+driver-api+}/MongoCollection.html#replaceOne(org.bson.conversions.Bson,TDocument)>`__
222222
- `ReplaceOptions
223223
<{+core-api+}/client/model/ReplaceOptions.html>`__
224224
- `UpdateResult <{+core-api+}/client/result/UpdateResult.html>`__
225-
- `BsonValue <{+api+}/bson/org/bson/BsonValue.html>`__
225+
- `BsonValue <{+api-root+}/bson/org/bson/BsonValue.html>`__

Diff for: source/write/run-command.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ API Documentation
6767
~~~~~~~~~~~~~~~~~
6868

6969
To learn more about the ``runCommand()`` method, see the
70-
`runCommand() API documentation <{+rs-driver-api+}/MongoDatabase.html#runCommand(org.bson.conversions.Bson)>`__.
70+
`runCommand() API documentation <{+driver-api+}/MongoDatabase.html#runCommand(org.bson.conversions.Bson)>`__.

Diff for: source/write/transactions.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ API Documentation
135135
To learn more about any of the types or methods discussed in this
136136
guide, see the following API Documentation:
137137

138-
- `MongoClient <{+rs-driver-api+}/MongoClient.html>`__
139-
- `startSession() <{+rs-driver-api+}/MongoClient.html#startSession()>`__
140-
- `startTransaction() <{+rs-driver-api+}/ClientSession.html#startTransaction()>`__
141-
- `abortTransaction() <{+rs-driver-api+}/ClientSession.html#abortTransaction()>`__
142-
- `commitTransaction() <{+rs-driver-api+}/ClientSession.html#commitTransaction()>`__
138+
- `MongoClient <{+driver-api+}/MongoClient.html>`__
139+
- `startSession() <{+driver-api+}/MongoClient.html#startSession()>`__
140+
- `startTransaction() <{+driver-api+}/ClientSession.html#startTransaction()>`__
141+
- `abortTransaction() <{+driver-api+}/ClientSession.html#abortTransaction()>`__
142+
- `commitTransaction() <{+driver-api+}/ClientSession.html#commitTransaction()>`__

Diff for: source/write/write-delete-documents.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -176,13 +176,13 @@ API Documentation
176176
To learn more about any of the methods or types discussed in this
177177
guide, see the following API documentation:
178178

179-
- `deleteOne() <{+rs-driver-api+}/MongoCollection.html#deleteOne(com.mongodb.reactivestreams.client.ClientSession,org.bson.conversions.Bson)>`__
179+
- `deleteOne() <{+driver-api+}/MongoCollection.html#deleteOne(com.mongodb.reactivestreams.client.ClientSession,org.bson.conversions.Bson)>`__
180180
- `deleteMany()
181-
<{+rs-driver-api+}/MongoCollection.html#deleteMany(com.mongodb.reactivestreams.client.ClientSession,org.bson.conversions.Bson)>`__
181+
<{+driver-api+}/MongoCollection.html#deleteMany(com.mongodb.reactivestreams.client.ClientSession,org.bson.conversions.Bson)>`__
182182
- `DeleteOptions
183183
<{+core-api+}/client/model/DeleteOptions.html>`__
184184
- `BsonValue
185-
<{+api+}/bson/org/bson/BsonValue.html>`__
185+
<{+api-root+}/bson/org/bson/BsonValue.html>`__
186186
- `Collation
187187
<{+core-api+}/client/model/Collation.html>`__
188188

0 commit comments

Comments
 (0)