Skip to content

Commit f5329f9

Browse files
authored
Merge pull request #1 from esarbe/master
little documentation fix
2 parents 05fc3f0 + 211e53e commit f5329f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/strawman/collection/CollectionStrawman6.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ trait LinearSeq[+A] extends Seq[A] with LinearSeqLike[A, LinearSeq] { self =>
5656
def next = { val r = current.head; current = current.tail; r }
5757
}
5858

59-
/** `length is defined in terms of `iterator` */
59+
/** `length` is defined in terms of `iterator` */
6060
def length: Int = iterator.length
6161

6262
/** `apply` is defined in terms of `drop`, which is in turn defined in

0 commit comments

Comments
 (0)