Skip to content

Commit 89d7021

Browse files
committed
JAVA-2020: Fixed Javadoc errors
1 parent 3ffbe70 commit 89d7021

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

driver-async/src/main/com/mongodb/async/client/FindIterable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ public interface FindIterable<T> extends MongoIterable<T> {
7070
* query. This only applies to a TAILABLE_AWAIT cursor. When the cursor is not a TAILABLE_AWAIT cursor,
7171
* this option is ignored.
7272
*
73-
* On servers >= 3.2, this option will be specified on the getMore command as "maxTimeMS". The default
73+
* On servers &gt;= 3.2, this option will be specified on the getMore command as "maxTimeMS". The default
7474
* is no value: no "maxTimeMS" is sent to the server with the getMore command.
7575
*
76-
* On servers < 3.2, this option is ignored, and indicates that the driver should respect the server's default value
76+
* On servers &lt; 3.2, this option is ignored, and indicates that the driver should respect the server's default value
7777
*
7878
* A zero value will be ignored.
7979
*

driver-core/src/main/com/mongodb/client/model/FindOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,10 @@ public FindOptions maxTime(final long maxTime, final TimeUnit timeUnit) {
146146
* query. This only applies to a TAILABLE_AWAIT cursor. When the cursor is not a TAILABLE_AWAIT cursor,
147147
* this option is ignored.
148148
*
149-
* On servers >= 3.2, this option will be specified on the getMore command as "maxTimeMS". The default
149+
* On servers &gt;= 3.2, this option will be specified on the getMore command as "maxTimeMS". The default
150150
* is no value: no "maxTimeMS" is sent to the server with the getMore command.
151151
*
152-
* On servers < 3.2, this option is ignored, and indicates that the driver should respect the server's default value
152+
* On servers &lt; 3.2, this option is ignored, and indicates that the driver should respect the server's default value
153153
*
154154
* A zero value will be ignored.
155155
*

driver-core/src/main/com/mongodb/operation/FindOperation.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,10 +264,10 @@ public FindOperation<T> maxTime(final long maxTime, final TimeUnit timeUnit) {
264264
* query. This only applies to a TAILABLE_AWAIT cursor. When the cursor is not a TAILABLE_AWAIT cursor,
265265
* this option is ignored.
266266
*
267-
* On servers >= 3.2, this option will be specified on the getMore command as "maxTimeMS". The default
267+
* On servers &gt;= 3.2, this option will be specified on the getMore command as "maxTimeMS". The default
268268
* is no value: no "maxTimeMS" is sent to the server with the getMore command.
269269
*
270-
* On servers < 3.2, this option is ignored, and indicates that the driver should respect the server's default value
270+
* On servers &lt; 3.2, this option is ignored, and indicates that the driver should respect the server's default value
271271
*
272272
* A zero value will be ignored.
273273
*

driver/src/main/com/mongodb/client/FindIterable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ public interface FindIterable<TResult> extends MongoIterable<TResult> {
7070
* query. This only applies to a TAILABLE_AWAIT cursor. When the cursor is not a TAILABLE_AWAIT cursor,
7171
* this option is ignored.
7272
*
73-
* On servers >= 3.2, this option will be specified on the getMore command as "maxTimeMS". The default
73+
* On servers &gt;= 3.2, this option will be specified on the getMore command as "maxTimeMS". The default
7474
* is no value: no "maxTimeMS" is sent to the server with the getMore command.
7575
*
76-
* On servers < 3.2, this option is ignored, and indicates that the driver should respect the server's default value
76+
* On servers &lt; 3.2, this option is ignored, and indicates that the driver should respect the server's default value
7777
*
7878
* A zero value will be ignored.
7979
*

0 commit comments

Comments
 (0)