Skip to content

Commit 3d8b852

Browse files
committed
Change docs.mongodb.com to www.mongodb.com
1 parent f0f1090 commit 3d8b852

File tree

9 files changed

+35
-35
lines changed

9 files changed

+35
-35
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ $ mongod --dbpath ./data/db --logpath ./data/mongod.log --port 27017 --logappend
106106
```
107107

108108
If you encounter `"Too many open files"` errors when running the tests then you will need to increase
109-
the number of available file descriptors prior to starting mongod as described in [https://docs.mongodb.com/manual/reference/ulimit/](https://docs.mongodb.com/manual/reference/ulimit/)
109+
the number of available file descriptors prior to starting mongod as described in [https://www.mongodb.com/manual/reference/ulimit/](https://www.mongodb.com/manual/reference/ulimit/)
110110

111111
## IntelliJ IDEA
112112

bson-scala/src/main/scala-2.13+/org/mongodb/scala/bson/collection/immutable/Document.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ object Document extends SpecificIterableFactory[(String, BsonValue), Document] {
4747
* @param json the JSON stringN
4848
* @return a corresponding `Document` object
4949
* @see org.bson.json.JsonReader
50-
* @see [[http://docs.mongodb.com/manual/reference/mongodb-extended-json/ MongoDB Extended JSON]]
50+
* @see [[http://www.mongodb.com/manual/reference/mongodb-extended-json/ MongoDB Extended JSON]]
5151
*/
5252
def apply(json: String): Document = new Document(BsonDocument(json))
5353

bson-scala/src/main/scala-2.13+/org/mongodb/scala/bson/collection/mutable/Document.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ object Document extends SpecificIterableFactory[(String, BsonValue), Document] {
4848
* @param json the JSON string
4949
* @return a corresponding `Document` object
5050
* @see org.bson.json.JsonReader
51-
* @see [[http://docs.mongodb.com/manual/reference/mongodb-extended-json/ MongoDB Extended JSON]]
51+
* @see [[http://www.mongodb.com/manual/reference/mongodb-extended-json/ MongoDB Extended JSON]]
5252
*/
5353
def apply(json: String): Document = Document(BsonDocument(json))
5454

bson-scala/src/main/scala-2.13-/org/mongodb/scala/bson/collection/immutable/Document.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ object Document {
4949
* @param json the JSON string
5050
* @return a corresponding `Document` object
5151
* @see org.bson.json.JsonReader
52-
* @see [[http://docs.mongodb.com/manual/reference/mongodb-extended-json/ MongoDB Extended JSON]]
52+
* @see [[http://www.mongodb.com/manual/reference/mongodb-extended-json/ MongoDB Extended JSON]]
5353
*/
5454
def apply(json: String): Document = new Document(BsonDocument(json))
5555

bson-scala/src/main/scala-2.13-/org/mongodb/scala/bson/collection/mutable/Document.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ object Document {
4949
* @param json the JSON string
5050
* @return a corresponding `Document` object
5151
* @see org.bson.json.JsonReader
52-
* @see [[http://docs.mongodb.com/manual/reference/mongodb-extended-json/ MongoDB Extended JSON]]
52+
* @see [[http://www.mongodb.com/manual/reference/mongodb-extended-json/ MongoDB Extended JSON]]
5353
*/
5454
def apply(json: String): Document = Document(BsonDocument(json))
5555

driver-core/src/test/resources/atlas-data-lake/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Introduction
1010
============
1111

1212
The YAML and JSON files in this directory tree are platform-independent tests
13-
that drivers can use to assert compatibility with `Atlas Data Lake <https://docs.mongodb.com/datalake>`_.
13+
that drivers can use to assert compatibility with `Atlas Data Lake <https://www.mongodb.com/datalake>`_.
1414

1515
Running these integration tests will require a running ``mongohoused``
1616
with data available in its ``test.driverdata`` collection. See the
@@ -33,7 +33,7 @@ The following tests MUST be implemented to fully test compatibility with
3333
Atlas Data Lake.
3434

3535
#. Test that the driver properly constructs and issues a
36-
`killCursors <https://docs.mongodb.com/manual/reference/command/killCursors/>`_
36+
`killCursors <https://www.mongodb.com/manual/reference/command/killCursors/>`_
3737
command to Atlas Data Lake. For this test, configure an APM listener on a
3838
client and execute a query that will leave a cursor open on the server (e.g.
3939
specify ``batchSize=2`` for a query that would match 3+ documents). Drivers

driver-core/src/test/resources/client-side-encryption/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ For example, the following matches a command_started_event for an insert of a do
4343
command_name: insert
4444

4545

46-
The values of `$$type` correspond to `these documented string representations of BSON types <https://docs.mongodb.com/manual/reference/bson-types/>`_.
46+
The values of `$$type` correspond to `these documented string representations of BSON types <https://www.mongodb.com/manual/reference/bson-types/>`_.
4747

4848

4949
Each YAML file has the following keys:
@@ -548,7 +548,7 @@ The corpus test exhaustively enumerates all ways to encrypt all BSON value types
548548
5. Load `corpus/corpus.json <../corpus/corpus.json>`_ to a variable named ``corpus``. The corpus contains subdocuments with the following fields:
549549

550550
- ``kms`` is either ``aws``, ``azure``, ``gcp``, or ``local``
551-
- ``type`` is a BSON type string `names coming from here <https://docs.mongodb.com/manual/reference/operator/query/type/>`_)
551+
- ``type`` is a BSON type string `names coming from here <https://www.mongodb.com/manual/reference/operator/query/type/>`_)
552552
- ``algo`` is either ``rand`` or ``det`` for random or deterministic encryption
553553
- ``method`` is either ``auto``, for automatic encryption or ``explicit`` for explicit encryption
554554
- ``identifier`` is either ``id`` or ``altname`` for the key identifier

driver-legacy/src/main/com/mongodb/MongoClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
* .applyConnectionString("mongodb://localhost")
7272
* .build())
7373
* </pre>
74-
* <p>You can connect to a <a href="https://docs.mongodb.com/manual/replication/">replica set</a> by passing a
74+
* <p>You can connect to a <a href="https://www.mongodb.com/manual/replication/">replica set</a> by passing a
7575
* list of servers to a MongoClient constructor. For example:</p>
7676
* <pre>
7777
* new MongoClient("mongodb://localhost:27017,localhost:27018,localhost:27019")

driver-scala/src/main/scala/org/mongodb/scala/model/Updates.scala

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ object Updates {
4646
* @param value the value
4747
* @tparam TItem the value type
4848
* @return the update
49-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/set/ \$set]]
49+
* @see [[http://www.mongodb.com/manual/reference/operator/update/set/ \$set]]
5050
*/
5151
def set[TItem](fieldName: String, value: TItem): Bson = JUpdates.set(fieldName, value)
5252

@@ -55,7 +55,7 @@ object Updates {
5555
*
5656
* @param fieldName the non-null field name
5757
* @return the update
58-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/unset/ \$unset]]
58+
* @see [[http://www.mongodb.com/manual/reference/operator/update/unset/ \$unset]]
5959
*/
6060
def unset(fieldName: String): Bson = JUpdates.unset(fieldName)
6161

@@ -67,7 +67,7 @@ object Updates {
6767
* @param value the value
6868
* @tparam TItem the value type
6969
* @return the update
70-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/setOnInsert/ \$setOnInsert]]
70+
* @see [[http://www.mongodb.com/manual/reference/operator/update/setOnInsert/ \$setOnInsert]]
7171
* @see UpdateOptions#upsert(boolean)
7272
*/
7373
def setOnInsert[TItem](fieldName: String, value: TItem): Bson = JUpdates.setOnInsert(fieldName, value)
@@ -78,7 +78,7 @@ object Updates {
7878
* @param fieldName the non-null field name
7979
* @param newFieldName the non-null new field name
8080
* @return the update
81-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/rename/ \$rename]]
81+
* @see [[http://www.mongodb.com/manual/reference/operator/update/rename/ \$rename]]
8282
*/
8383
def rename(fieldName: String, newFieldName: String): Bson = JUpdates.rename(fieldName, newFieldName)
8484

@@ -88,7 +88,7 @@ object Updates {
8888
* @param fieldName the non-null field name
8989
* @param number the value
9090
* @return the update
91-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/inc/ \$inc]]
91+
* @see [[http://www.mongodb.com/manual/reference/operator/update/inc/ \$inc]]
9292
*/
9393
def inc(fieldName: String, number: Number): Bson = JUpdates.inc(fieldName, number)
9494

@@ -98,7 +98,7 @@ object Updates {
9898
* @param fieldName the non-null field name
9999
* @param number the non-null number
100100
* @return the update
101-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/mul/ \$mul]]
101+
* @see [[http://www.mongodb.com/manual/reference/operator/update/mul/ \$mul]]
102102
*/
103103
def mul(fieldName: String, number: Number): Bson = JUpdates.mul(fieldName, number)
104104

@@ -110,7 +110,7 @@ object Updates {
110110
* @param value the value
111111
* @tparam TItem the value type
112112
* @return the update
113-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/min/ \$min]]
113+
* @see [[http://www.mongodb.com/manual/reference/operator/update/min/ \$min]]
114114
*/
115115
def min[TItem](fieldName: String, value: TItem): Bson = JUpdates.min(fieldName, value)
116116

@@ -122,7 +122,7 @@ object Updates {
122122
* @param value the value
123123
* @tparam TItem the value type
124124
* @return the update
125-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/min/ \$min]]
125+
* @see [[http://www.mongodb.com/manual/reference/operator/update/min/ \$min]]
126126
*/
127127
def max[TItem](fieldName: String, value: TItem): Bson = JUpdates.max(fieldName, value)
128128

@@ -131,8 +131,8 @@ object Updates {
131131
*
132132
* @param fieldName the non-null field name
133133
* @return the update
134-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/currentDate/ \$currentDate]]
135-
* @see [[http://docs.mongodb.com/manual/reference/bson-types/#date Date]]
134+
* @see [[http://www.mongodb.com/manual/reference/operator/update/currentDate/ \$currentDate]]
135+
* @see [[http://www.mongodb.com/manual/reference/bson-types/#date Date]]
136136
*/
137137
def currentDate(fieldName: String): Bson = JUpdates.currentDate(fieldName)
138138

@@ -141,8 +141,8 @@ object Updates {
141141
*
142142
* @param fieldName the non-null field name
143143
* @return the update
144-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/currentDate/ \$currentDate]]
145-
* @see [[http://docs.mongodb.com/manual/reference/bson-types/#document-bson-type-timestamp Timestamp]]
144+
* @see [[http://www.mongodb.com/manual/reference/operator/update/currentDate/ \$currentDate]]
145+
* @see [[http://www.mongodb.com/manual/reference/bson-types/#document-bson-type-timestamp Timestamp]]
146146
*/
147147
def currentTimestamp(fieldName: String): Bson = JUpdates.currentTimestamp(fieldName)
148148

@@ -154,7 +154,7 @@ object Updates {
154154
* @param value the value
155155
* @tparam TItem the value type
156156
* @return the update
157-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/addToSet/ \$addToSet]]
157+
* @see [[http://www.mongodb.com/manual/reference/operator/update/addToSet/ \$addToSet]]
158158
*/
159159
def addToSet[TItem](fieldName: String, value: TItem): Bson = JUpdates.addToSet(fieldName, value)
160160

@@ -166,7 +166,7 @@ object Updates {
166166
* @param values the values
167167
* @tparam TItem the value type
168168
* @return the update
169-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/addToSet/ \$addToSet]]
169+
* @see [[http://www.mongodb.com/manual/reference/operator/update/addToSet/ \$addToSet]]
170170
*/
171171
def addEachToSet[TItem](fieldName: String, values: TItem*): Bson = JUpdates.addEachToSet(fieldName, values.asJava)
172172

@@ -177,7 +177,7 @@ object Updates {
177177
* @param value the value
178178
* @tparam TItem the value type
179179
* @return the update
180-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/push/ \$push]]
180+
* @see [[http://www.mongodb.com/manual/reference/operator/update/push/ \$push]]
181181
*/
182182
def push[TItem](fieldName: String, value: TItem): Bson = JUpdates.push(fieldName, value)
183183

@@ -188,7 +188,7 @@ object Updates {
188188
* @param values the values
189189
* @tparam TItem the value type
190190
* @return the update
191-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/push/ \$push]]
191+
* @see [[http://www.mongodb.com/manual/reference/operator/update/push/ \$push]]
192192
*/
193193
def pushEach[TItem](fieldName: String, values: TItem*): Bson = JUpdates.pushEach(fieldName, values.asJava)
194194

@@ -201,7 +201,7 @@ object Updates {
201201
* @param options the non-null push options
202202
* @tparam TItem the value type
203203
* @return the update
204-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/push/ \$push]]
204+
* @see [[http://www.mongodb.com/manual/reference/operator/update/push/ \$push]]
205205
*/
206206
def pushEach[TItem](fieldName: String, options: JPushOptions, values: TItem*): Bson =
207207
JUpdates.pushEach(fieldName, values.asJava, options)
@@ -213,7 +213,7 @@ object Updates {
213213
* @param value the value
214214
* @tparam TItem the value type
215215
* @return the update
216-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/pull/ \$pull]]
216+
* @see [[http://www.mongodb.com/manual/reference/operator/update/pull/ \$pull]]
217217
*/
218218
def pull[TItem](fieldName: String, value: TItem): Bson = JUpdates.pull(fieldName, value)
219219

@@ -222,7 +222,7 @@ object Updates {
222222
*
223223
* @param filter the query filter
224224
* @return the update
225-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/pull/ \$pull]]
225+
* @see [[http://www.mongodb.com/manual/reference/operator/update/pull/ \$pull]]
226226
*/
227227
def pullByFilter(filter: Bson): Bson = JUpdates.pullByFilter(filter)
228228

@@ -233,7 +233,7 @@ object Updates {
233233
* @param values the values
234234
* @tparam TItem the value type
235235
* @return the update
236-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/pull/ \$pull]]
236+
* @see [[http://www.mongodb.com/manual/reference/operator/update/pull/ \$pull]]
237237
*/
238238
def pullAll[TItem](fieldName: String, values: TItem*): Bson = JUpdates.pullAll(fieldName, values.asJava)
239239

@@ -242,7 +242,7 @@ object Updates {
242242
*
243243
* @param fieldName the non-null field name
244244
* @return the update
245-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/pop/ \$pop]]
245+
* @see [[http://www.mongodb.com/manual/reference/operator/update/pop/ \$pop]]
246246
*/
247247
def popFirst(fieldName: String): Bson = JUpdates.popFirst(fieldName)
248248

@@ -251,7 +251,7 @@ object Updates {
251251
*
252252
* @param fieldName the non-null field name
253253
* @return the update
254-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/pop/ \$pop]]
254+
* @see [[http://www.mongodb.com/manual/reference/operator/update/pop/ \$pop]]
255255
*/
256256
def popLast(fieldName: String): Bson = JUpdates.popLast(fieldName)
257257

@@ -271,7 +271,7 @@ object Updates {
271271
* @param fieldName the field name
272272
* @param value the value
273273
* @return the update
274-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/bit/ \$bit]]
274+
* @see [[http://www.mongodb.com/manual/reference/operator/update/bit/ \$bit]]
275275
*/
276276
def bitwiseAnd(fieldName: String, value: Long): Bson = JUpdates.bitwiseAnd(fieldName, value)
277277

@@ -282,7 +282,7 @@ object Updates {
282282
* @param fieldName the field name
283283
* @param value the value
284284
* @return the update
285-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/bit/ \$bit]]
285+
* @see [[http://www.mongodb.com/manual/reference/operator/update/bit/ \$bit]]
286286
*/
287287
def bitwiseOr(fieldName: String, value: Int): Bson = JUpdates.bitwiseOr(fieldName, value)
288288

@@ -292,7 +292,7 @@ object Updates {
292292
* @param fieldName the field name
293293
* @param value the value
294294
* @return the update
295-
* @see [[http://docs.mongodb.com/manual/reference/operator/update/bit/ \$bit]]
295+
* @see [[http://www.mongodb.com/manual/reference/operator/update/bit/ \$bit]]
296296
*/
297297
def bitwiseOr(fieldName: String, value: Long): Bson = JUpdates.bitwiseOr(fieldName, value)
298298

0 commit comments

Comments
 (0)