summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel C. Sobral <dcsobral@gmail.com>2012-08-07 13:45:26 -0300
committerDaniel C. Sobral <dcsobral@gmail.com>2012-08-09 14:17:40 -0300
commiteda4e28ab38c22e459a88e24ee8f87053644de78 (patch)
treebd8dd46bfc4ae2e68f34df83b18cc1caf748a0ab /src
parent0e2080e8bf1c54cac59c5b0c53a93eb0de009d3b (diff)
downloadscala-eda4e28ab38c22e459a88e24ee8f87053644de78.tar.gz
scala-eda4e28ab38c22e459a88e24ee8f87053644de78.tar.bz2
scala-eda4e28ab38c22e459a88e24ee8f87053644de78.zip
SI-6119 Fix mispelling on take documentation.
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/collection/GenTraversableLike.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/GenTraversableLike.scala b/src/library/scala/collection/GenTraversableLike.scala
index 0d51230623..903de4a247 100644
--- a/src/library/scala/collection/GenTraversableLike.scala
+++ b/src/library/scala/collection/GenTraversableLike.scala
@@ -333,7 +333,7 @@ trait GenTraversableLike[+A, +Repr] extends Any with GenTraversableOnce[A] with
/** Selects first ''n'' elements.
* $orderDependent
- * @param n Tt number of elements to take from this $coll.
+ * @param n the number of elements to take from this $coll.
* @return a $coll consisting only of the first `n` elements of this $coll,
* or else the whole $coll, if it has less than `n` elements.
*/