Skip to content

Commit 8628bd9

Browse files
committed
Docs: links fixes
1 parent 759616c commit 8628bd9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/reference/content/driver-reactive/tutorials/connect-to-mongodb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ To connect to multiple `mongos` instances:
148148
MongoClient mongoClient = MongoClients.create("mongodb://host1:27017,host2:27017");
149149
```
150150

151-
- You can specify a list of the `mongos` instances' [`ServerAddress`]({{ < apiref "mongodb-driver-core" "com/mongodb/ServerAddress.html" >}}):
151+
- You can specify a list of the `mongos` instances' [`ServerAddress`]({{< apiref "mongodb-driver-core" "com/mongodb/ServerAddress.html" >}}):
152152
153153
```java
154154
MongoClient mongoClient = MongoClients.create(

docs/reference/content/driver-scala/tutorials/connect-to-mongodb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ To connect to multiple `mongos` instances:
142142
val mongoClient = MongoClient("mongodb://host1:27017,host2:27017")
143143
```
144144

145-
- You can specify a list of the `mongos` instances' [`ServerAddress`]({{ < apiref "mongodb-driver-core" "com/mongodb/ServerAddress.html" >}}):
145+
- You can specify a list of the `mongos` instances' [`ServerAddress`]({{< apiref "mongodb-driver-core" "com/mongodb/ServerAddress.html" >}}):
146146

147147
```scala
148148
val mongoClient = MongoClient(

docs/reference/content/driver/getting-started/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ Block<Document> printBlock = new Block<Document>() {
374374
collection.find(gt("i", 50)).forEach(printBlock);
375375
```
376376

377-
The example uses the [`forEach`]({{ < apiref "mongodb-driver-sync" "com/mongodb/client/MongoIterable.html#forEach(com.mongodb.Block)" >}}) method on the ``FindIterable`` object to apply a block to each document.
377+
The example uses the [`forEach`]({{< apiref "mongodb-driver-sync" "com/mongodb/client/MongoIterable.html#forEach(com.mongodb.Block)" >}}) method on the ``FindIterable`` object to apply a block to each document.
378378

379379
To specify a filter for a range, such as ``50 < i <= 100``, you can use the [`and`]({{< apiref "mongodb-driver-core" "com/mongodb/client/model/Filters.html#and(org.bson.conversions.Bson...)" >}}) helper:
380380

docs/reference/content/driver/tutorials/connect-to-mongodb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ To connect to multiple `mongos` instances:
164164
MongoClient mongoClient = MongoClients.create("mongodb://host1:27017,host2:27017");
165165
```
166166

167-
- You can specify a list of the `mongos` instances' [`ServerAddress`]({{ < apiref "mongodb-driver-core" "com/mongodb/ServerAddress.html" >}}):
167+
- You can specify a list of the `mongos` instances' [`ServerAddress`]({{< apiref "mongodb-driver-core" "com/mongodb/ServerAddress.html" >}}):
168168
169169
```java
170170
MongoClient mongoClient = MongoClients.create(
@@ -344,7 +344,7 @@ To connect to multiple `mongos` instances:
344344
```
345345

346346
- You can specify a list of the `mongos` instances'
347-
[`ServerAddress`]({{ < apiref "mongodb-driver-core" "com/mongodb/ServerAddress.html" >}}):
347+
[`ServerAddress`]({{< apiref "mongodb-driver-core" "com/mongodb/ServerAddress.html" >}}):
348348
349349
```java
350350
MongoClient mongoClient = new MongoClient(

0 commit comments

Comments
 (0)