Skip to content

Commit 0e63835

Browse files
committed
fixup! fixup! adds groupUntilChanged extension method on scala.collection.Iterator
1 parent d659dd1 commit 0e63835

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/scala/collection/decorators/IteratorDecorator.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class IteratorDecorator[A](val `this`: Iterator[A]) extends AnyVal {
7878
* <pre>
7979
* Vector(1,2,2,3,3,3,2,2)
8080
* .iterator
81-
* .groupUntilChanged(identity)
81+
* .splitBy(identity)
8282
* .toList
8383
* </pre>
8484
* produces

0 commit comments

Comments
 (0)