Skip to content

Commit f8d412d

Browse files
updated all broken links (#140)
1 parent e818b43 commit f8d412d

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

source/fundamentals/builders/aggregates.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ on a specified span of documents in a collection.
547547

548548
.. tip:: Window Functions
549549

550-
The driver includes the :java-docs:`WindowedComputations <apidocs/mongodb-driver-core/com/mongodb/client/model/WindowedComputations.html>`
550+
The driver includes the `WindowedComputations <https://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-core/com/mongodb/client/model/WindowedComputations.html>`__
551551
class with static factory methods for each of the supported window operators.
552552

553553
The following example creates a pipeline stage that computes the

source/fundamentals/builders/indexes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ examples of queries covered by indexes.
3535
The ``Indexes`` class provides static factory methods for all the MongoDB index types.
3636
Each method returns a :java-docs:`Bson <apidocs/bson/org/bson/conversions/Bson.html>`
3737
instance, which you can pass to
38-
:java-docs:`createIndex() <apidocs/mongodb-driver-core/com/mongodb/client/MongoCollection.html#createIndex(org.bson.conversions.Bson)>`.
38+
:java-docs:`createIndex() <apidocs/mongodb-driver-sync/com/mongodb/client/MongoCollection.html#createIndex(org.bson.conversions.Bson,com.mongodb.client.model.IndexOptions)>`.
3939

4040
.. tip::
4141

source/fundamentals/builders/updates.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ The example above updates the original document to the following state:
280280

281281
Current Date
282282
~~~~~~~~~~~~
283-
Use the :java-docs:`currentDate() <com/mongodb/client/model/Updates.html#currentDate(java.lang.String)>`
283+
Use the :java-docs:`currentDate() <apidocs/mongodb-driver-core/com/mongodb/client/model/Updates.html#currentDate(java.lang.String)>`
284284
method to assign the value of a field in an update operation to the
285285
current date as a :manual:`BSON date </reference/bson-types/#date>`.
286286

source/fundamentals/connection/tls.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ using a method in the ``MongoClientSettings.Builder`` class.
4141
:tabid: connectionstring
4242

4343
To enable TLS/SSL on a connection with a :java-docs:`ConnectionString
44-
<apidocs/mongodb-driver-sync/com/mongodb/ConnectionString.html>`, assign the connection string
44+
<apidocs/mongodb-driver-core/com/mongodb/ConnectionString.html>`, assign the connection string
4545
parameter ``tls`` a value of ``true`` in the connection string passed to
4646
``MongoClients.create()``:
4747

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ in a collection:
4545
For more information about the methods and classes mentioned in this section,
4646
see the following API Documentation:
4747

48-
- :java-docs:`bulkWrite() <apidocs/mongodb-driver-sync/apidocs/mongodb-driver-sync/com/mongodb/client/MongoCollection.html#bulkWrite(java.util.List,com.mongodb.client.model.BulkWriteOptions)>`
48+
- :java-docs:`bulkWrite() <apidocs/mongodb-driver-sync/com/mongodb/client/MongoCollection.html#bulkWrite(java.util.List,com.mongodb.client.model.BulkWriteOptions)>`
4949
- :java-docs:`WriteModel <apidocs/mongodb-driver-core/com/mongodb/client/model/WriteModel.html>`
5050
- :java-docs:`BulkWriteOptions <apidocs/mongodb-driver-core/com/mongodb/client/model/BulkWriteOptions.html>`
5151

source/fundamentals/indexes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ fields:
290290

291291
For more information, see the following Server Manual Entries:
292292

293-
- :manual:`Compound Text Index Restrictions <core/index-text/#std-label-text-index-compound>`
293+
- :manual:`Compound Text Index Restrictions </core/index-text/#std-label-text-index-compound>`
294294
- :manual:`Text Indexes </core/index-text>`
295295

296296
Geospatial Indexes

source/fundamentals/versioned-api.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ following operations:
9292
For more information on the methods and classes referenced in this
9393
section, see the following API Documentation:
9494

95-
- :java-docs:`ServerApi <apidocs/mongodb-driver-core/com/mongodb/ServerApi.html>`
96-
- :java-docs:`ServerApi.Builder <apidocs/mongodb-driver-core/com/mongodb/ServerApi.Builder.html>`
97-
- :java-docs:`ServerApiVersion <apidocs/mongodb-driver-core/com/mongodb/ServerApiVersion.html>`
98-
- :java-docs:`ServerAddress <apidocs/mongodb-driver-core/com/mongodb/ServerAddress.html>`
99-
- :java-docs:`MongoClientSettings <apidocs/mongodb-driver-core/com/mongodb/MongoClientSettings.html>`
100-
- :java-docs:`MongoClientSettings.Builder <apidocs/mongodb-driver-core/com/mongodb/MongoClientSettings.Builder.html>`
101-
- :java-docs:`MongoClients.create() <apidocs/mongodb-driver-sync/com/mongodb/client/MongoClients.html#create(com.mongodb.MongoClientSettings)>`
102-
- :java-docs:`MongoClient <apidocs/mongodb-driver-sync/com/mongodb/client/MongoClient.html>`
95+
- `ServerApi <https://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-core/com/mongodb/ServerApi.html>`__
96+
- `ServerApi.Builder <https://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-core/com/mongodb/ServerApi.Builder.html>`__
97+
- `ServerApiVersion <https://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-core/com/mongodb/ServerApiVersion.html>`__
98+
- `ServerAddress <https://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-core/com/mongodb/ServerAddress.html>`__
99+
- `MongoClientSettings <https://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-core/com/mongodb/MongoClientSettings.html>`__
100+
- `MongoClientSettings.Builder <https://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-core/com/mongodb/MongoClientSettings.Builder.html>`__
101+
- `MongoClients.create() <https://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-sync/com/mongodb/client/MongoClients.html#create(com.mongodb.MongoClientSettings)>`__
102+
- `MongoClient <https://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-sync/com/mongodb/client/MongoClient.html>`__
103103

104104
.. _versioned-api-options:
105105

@@ -139,6 +139,6 @@ of ``ServerApi`` by chaining methods on the ``ServerApi.Builder``:
139139
For more information on the options in this section, see the following
140140
API Documentation:
141141

142-
- :java-docs:`strict() <apidocs/mongodb-driver-core/com/mongodb/ServerApi.Builder.html#strict(boolean)>`
143-
- :java-docs:`deprecationErrors() <apidocs/mongodb-driver-core/com/mongodb/ServerApi.Builder.html#>`
142+
- `strict() <https://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-core/com/mongodb/ServerApi.Builder.html#strict(boolean)>`__
143+
- `deprecationErrors() <https://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-core/com/mongodb/ServerApi.Builder.html#>`__
144144

0 commit comments

Comments
 (0)