summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2012-12-06 11:55:22 -0800
committerAdriaan Moors <adriaan.moors@typesafe.com>2012-12-06 11:55:22 -0800
commitf4acacd1d8e1b26742f188579c782f6f150d6c89 (patch)
tree6691292418a5d697bddd4ff18019e6be0c63bc99 /src/library
parentf50131d70dfe5b18107d7037a72362249640c54b (diff)
parentef61bc5130476716f4f5783129a8c2e9fc63d21e (diff)
downloadscala-f4acacd1d8e1b26742f188579c782f6f150d6c89.tar.gz
scala-f4acacd1d8e1b26742f188579c782f6f150d6c89.tar.bz2
scala-f4acacd1d8e1b26742f188579c782f6f150d6c89.zip
Merge pull request #1680 from jedesah/Seq_doc
Fix typo in documentation for Seq
Diffstat (limited to 'src/library')
-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`.
*