Skip to content

Commit 573bd05

Browse files
committed
Better scaladoc note for the "runs" function
1 parent 26d7125 commit 573bd05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

geocss/src/main/scala/Translator.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -668,8 +668,8 @@ class Translator(val baseURL: Option[java.net.URL]) {
668668
}
669669

670670
/**
671-
* Order-preserving grouping of pairs by the first item in the tuple
672-
* "runs" as in run-length encoding.
671+
* "runs" as in run-length encoding: Order-preserving grouping of pairs by
672+
* the first item in the tuple
673673
*/
674674
private def runs[K, V](xs: Seq[(K,V)]): Seq[(K,Seq[V])] = {
675675
type In = Seq[(K,V)]

0 commit comments

Comments
 (0)