Skip to content

Commit

Permalink
fixes #190 Nullable args in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
zigzago committed Mar 28, 2020
1 parent 9d301ed commit a1305f7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class CoroutineDistinctPublisher<T>(override val publisher: DistinctPublisher<T>
/**
* Sets the query filter to apply to the query.
*
* @param filter the filter, which may be null.
* @param filter the filter
* @return this
* @mongodb.driver.manual reference/method/db.collection.find/ Filter
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class CoroutineFindPublisher<T>(override val publisher: FindPublisher<T>) :
/**
* Sets the query filter to apply to the query.
*
* @param filter the filter, which may be null.
* @param filter the filter.
* @return this
* @mongodb.driver.manual reference/method/db.collection.find/ Filter
*/
Expand All @@ -56,7 +56,7 @@ class CoroutineFindPublisher<T>(override val publisher: FindPublisher<T>) :
/**
* Sets the limit to apply.
*
* @param limit the limit, which may be null
* @param limit the limit
* @return this
* @mongodb.driver.manual reference/method/cursor.limit/#cursor.limit Limit
*/
Expand All @@ -75,7 +75,7 @@ class CoroutineFindPublisher<T>(override val publisher: FindPublisher<T>) :
* Sets the maximum execution time on the server for this operation.
*
* @param maxTime the max time
* @param timeUnit the time unit, which may not be null
* @param timeUnit the time unit
* @return this
* @mongodb.driver.manual reference/method/cursor.maxTimeMS/#cursor.maxTimeMS Max Time
*/
Expand Down Expand Up @@ -106,7 +106,7 @@ class CoroutineFindPublisher<T>(override val publisher: FindPublisher<T>) :
/**
* Sets a document describing the fields to return for all matching documents.
*
* @param projection the project document, which may be null.
* @param projection the project document.
* @return this
* @mongodb.driver.manual reference/method/db.collection.find/ Projection
*/
Expand All @@ -115,7 +115,7 @@ class CoroutineFindPublisher<T>(override val publisher: FindPublisher<T>) :
/**
* Sets the sort criteria to apply to the query.
*
* @param sort the sort criteria, which may be null.
* @param sort the sort criteria.
* @return this
* @mongodb.driver.manual reference/method/cursor.sort/ Sort
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class CoroutineListCollectionsPublisher<TResult>(override val publisher: ListCol
/**
* Sets the query filter to apply to the query.
*
* @param filter the filter, which may be null.
* @param filter the filter
* @return this
* @mongodb.driver.manual reference/method/db.collection.find/ Filter
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class CoroutineListIndexesPublisher<T>(override val publisher: ListIndexesPublis
* Sets the maximum execution time on the server for this operation.
*
* @param maxTime the max time
* @param timeUnit the time unit, which may not be null
* @param timeUnit the time unit
* @return this
* @mongodb.driver.manual reference/operator/meta/maxTimeMS/ Max Time
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class CoroutineMapReducePublisher<T>(override val publisher: MapReducePublisher<
/**
* Sets the sort criteria to apply to the query.
*
* @param sort the sort criteria, which may be null.
* @param sort the sort criteria
* @return this
* @mongodb.driver.manual reference/method/cursor.sort/ Sort
*/
Expand All @@ -89,7 +89,7 @@ class CoroutineMapReducePublisher<T>(override val publisher: MapReducePublisher<
/**
* Sets the limit to apply.
*
* @param limit the limit, which may be null
* @param limit the limit
* @return this
* @mongodb.driver.manual reference/method/cursor.limit/#cursor.limit Limit
*/
Expand Down

0 comments on commit a1305f7

Please sign in to comment.