summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLucien Pereira <pereira.lucien@laposte.net>2012-01-14 09:52:41 +0100
committerLucien Pereira <pereira.lucien@laposte.net>2012-01-14 09:52:41 +0100
commit8cf889f06cb83f322ff3892175e978c25cd41d43 (patch)
tree140b5d4f975f426c7d78082de39a1280e0399b96 /src
parent066b1a1f5d80e1a314d6e96a9a8c0b4d76a8c7a1 (diff)
downloadscala-8cf889f06cb83f322ff3892175e978c25cd41d43.tar.gz
scala-8cf889f06cb83f322ff3892175e978c25cd41d43.tar.bz2
scala-8cf889f06cb83f322ff3892175e978c25cd41d43.zip
syntactic error correction
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/collection/mutable/TreeSet.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/mutable/TreeSet.scala b/src/library/scala/collection/mutable/TreeSet.scala
index 38fa0c953f..56b4b349cf 100644
--- a/src/library/scala/collection/mutable/TreeSet.scala
+++ b/src/library/scala/collection/mutable/TreeSet.scala
@@ -98,7 +98,7 @@ class TreeSet[A](implicit val ordering: Ordering[A]) extends SortedSet[A] with S
}
/**
- * Thanks to the nature immutable of the
+ * Thanks to the immutable nature of the
* underlying AVL Tree, we can share it with
* the clone. So clone complexity in time is O(1).
*