summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Hauck <markus1189@gmail.com>2016-03-31 18:06:48 +0200
committerMarkus Hauck <markus1189@gmail.com>2016-03-31 18:14:22 +0200
commitd3eaf1588ca12637c48ee0c4471c24d9bde2b6fd (patch)
treec50a87afd27d5ddd468c7ee62a0a92fcd7809a52
parent4fc7d5517c7152d43745960efde5042febe29422 (diff)
downloadscala-d3eaf1588ca12637c48ee0c4471c24d9bde2b6fd.tar.gz
scala-d3eaf1588ca12637c48ee0c4471c24d9bde2b6fd.tar.bz2
scala-d3eaf1588ca12637c48ee0c4471c24d9bde2b6fd.zip
Fix typo in the docs for the ++ method of Stream
-rw-r--r--src/library/scala/collection/immutable/Stream.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/immutable/Stream.scala b/src/library/scala/collection/immutable/Stream.scala
index d3d5af7678..d135bb29a8 100644
--- a/src/library/scala/collection/immutable/Stream.scala
+++ b/src/library/scala/collection/immutable/Stream.scala
@@ -357,7 +357,7 @@ sealed abstract class Stream[+A] extends AbstractSeq[A]
* `List(BigInt(12)) ++ fibs`.
*
* @tparam B The element type of the returned collection.'''That'''
- * @param that The [[scala.collection.GenTraversableOnce]] the be concatenated
+ * @param that The [[scala.collection.GenTraversableOnce]] to be concatenated
* to this `Stream`.
* @return A new collection containing the result of concatenating `this` with
* `that`.