Skip to content

Commit 1923983

Browse files
committed
Javadoc: Fix callback doc for MongoCollection.updateMany
1 parent 146a123 commit 1923983

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ void bulkWrite(List<? extends WriteModel<? extends TDocument>> requests, BulkWri
429429
*
430430
* @param filter a document describing the query filter, which may not be null.
431431
* @param update a document describing the update, which may not be null. The update to apply must include only update operators. T
432-
* @param callback the callback passed the result of the update one operation
432+
* @param callback the callback passed the result of the update many operation
433433
* @throws com.mongodb.MongoWriteException returned via the callback
434434
* @throws com.mongodb.MongoWriteConcernException returned via the callback
435435
* @throws com.mongodb.MongoException returned via the callback
@@ -444,7 +444,7 @@ void bulkWrite(List<? extends WriteModel<? extends TDocument>> requests, BulkWri
444444
* @param filter a document describing the query filter, which may not be null.
445445
* @param update a document describing the update, which may not be null. The update to apply must include only update operators.
446446
* @param options the options to apply to the update operation
447-
* @param callback the callback passed the result of the update one operation
447+
* @param callback the callback passed the result of the update many operation
448448
* @throws com.mongodb.MongoWriteException returned via the callback
449449
* @throws com.mongodb.MongoWriteConcernException returned via the callback
450450
* @throws com.mongodb.MongoException returned via the callback

0 commit comments

Comments
 (0)