summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-02-19 18:49:48 +0000
committerPaul Phillips <paulp@improving.org>2009-02-19 18:49:48 +0000
commitfeb773f602565c205534fc3fa9cee7ce25548786 (patch)
tree1a25d7aee1c627d7374d1c6ad5bc9d744950958e /src/library
parent972e5c52af5da6921a398a91db9db39da2addd2e (diff)
downloadscala-feb773f602565c205534fc3fa9cee7ce25548786.tar.gz
scala-feb773f602565c205534fc3fa9cee7ce25548786.tar.bz2
scala-feb773f602565c205534fc3fa9cee7ce25548786.zip
supplemented lacking documentation for sameElem...
supplemented lacking documentation for sameElements; addresses #888.
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/Iterable.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/Iterable.scala b/src/library/scala/Iterable.scala
index 12b6bae5ad..b66fd94aba 100644
--- a/src/library/scala/Iterable.scala
+++ b/src/library/scala/Iterable.scala
@@ -378,7 +378,7 @@ trait Iterable[+A] {
*
* @note will not terminate for infinite-sized collections.
* @param that the other iterable object
- * @return true, iff both iterable objects contain the same elements.
+ * @return true, iff both iterable objects contain the same elements in the same order.
*/
def sameElements[B >: A](that: Iterable[B]): Boolean = {
val ita = this.elements