Skip to content

Commit 5609b95

Browse files
committed
chore(iterable_chunk): fix types
1 parent a8d257b commit 5609b95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/IterableObject.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public function values(): self
119119
return new self(new WithoutKeysTraversable($this->iterable));
120120
}
121121

122-
/** @return iterable<int, array<TKey, TValue>> */
122+
/** @return iterable<int, iterable<TKey, TValue>> */
123123
public function chunk(int $size): iterable
124124
{
125125
if ($this->iterable instanceof Traversable) {

0 commit comments

Comments
 (0)