diff --git a/src/main/java/org/springframework/data/couchbase/core/ReactiveRemoveByIdOperation.java b/src/main/java/org/springframework/data/couchbase/core/ReactiveRemoveByIdOperation.java index ecdf6a061..a9189c980 100644 --- a/src/main/java/org/springframework/data/couchbase/core/ReactiveRemoveByIdOperation.java +++ b/src/main/java/org/springframework/data/couchbase/core/ReactiveRemoveByIdOperation.java @@ -84,10 +84,10 @@ interface TerminatingRemoveById extends OneAndAllIdReactive { /** * Remove the documents in the collection. Requires whole entity for transaction to have the cas. * - * @param ids the document IDs. + * @param entities the entities to remove. * @return result of the removes. */ - Flux allEntities(Collection ids); + Flux allEntities(Collection entities); }