Browse Source

Fix doc block example.

Mark Story 10 years ago
parent
commit
b745e34ab8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Collection/CollectionInterface.php

+ 1 - 1
src/Collection/CollectionInterface.php

@@ -909,7 +909,7 @@ interface CollectionInterface extends Iterator, JsonSerializable
      * ### Example:
      *
      * ```
-     * $items [1, 2, 3, 4, 5, ,6 ,7 ,8 ,9, 10, 11];
+     * $items [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11];
      * $chunked = (new Collection($items))->chunk(3)->toList();
      * // Returns [[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11]]
      * ```