summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/SeqLike.scala
diff options
context:
space:
mode:
authorJean-Remi Desjardins <jeanremi.desjardins@gmail.com>2012-11-27 22:31:22 -0500
committerJean-Remi Desjardins <jeanremi.desjardins@gmail.com>2012-11-27 22:35:57 -0500
commitef61bc5130476716f4f5783129a8c2e9fc63d21e (patch)
tree36e2e09301b77b7ed9a51cf13a14194ae8874878 /src/library/scala/collection/SeqLike.scala
parent2a8291a3568abc848e79acaacd82e90932a77c8a (diff)
downloadscala-ef61bc5130476716f4f5783129a8c2e9fc63d21e.tar.gz
scala-ef61bc5130476716f4f5783129a8c2e9fc63d21e.tar.bz2
scala-ef61bc5130476716f4f5783129a8c2e9fc63d21e.zip
Fix typo in documentation for Seq
Diffstat (limited to 'src/library/scala/collection/SeqLike.scala')
-rw-r--r--src/library/scala/collection/SeqLike.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/SeqLike.scala b/src/library/scala/collection/SeqLike.scala
index 6871a3cb73..f65e2ef9cd 100644
--- a/src/library/scala/collection/SeqLike.scala
+++ b/src/library/scala/collection/SeqLike.scala
@@ -22,7 +22,7 @@ import scala.math.{ min, max, Ordering }
* Sequences are special cases of iterable collections of class `Iterable`.
* Unlike iterables, sequences always have a defined order of elements.
* Sequences provide a method `apply` for indexing. Indices range from `0` up to the `length` of
- * a sequence. Sequences support a number to find occurrences of elements or subsequences, including
+ * a sequence. Sequences support a number of methods to find occurrences of elements or subsequences, including
* `segmentLength`, `prefixLength`, `indexWhere`, `indexOf`, `lastIndexWhere`, `lastIndexOf`,
* `startsWith`, `endsWith`, `indexOfSlice`.
*