diff --git a/src/Collection/CollectionInterface.php b/src/Collection/CollectionInterface.php index 6199fd8d352..ce9419d7f57 100644 --- a/src/Collection/CollectionInterface.php +++ b/src/Collection/CollectionInterface.php @@ -135,8 +135,8 @@ public function every(callable $c); * ``` * * @param callable $c a callback function - * @return bool true if for all elements in this collection the provided - * callback returns true, false otherwise + * @return bool true if the provided callback returns true for any element in this + * collection, false otherwise */ public function some(callable $c);