summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGeoffrey Knauth <geoff@knauth.org>2015-04-07 14:02:45 -0400
committerGeoffrey Knauth <geoff@knauth.org>2015-04-07 14:02:45 -0400
commitc81212d46712b0a1a25dee478993f4b9c1644330 (patch)
tree94fd60a87780636add5327c20c8908c93196eac3 /src
parentd88064d99c0577db41157ba183c32a94c5fd64bd (diff)
downloadscala-c81212d46712b0a1a25dee478993f4b9c1644330.tar.gz
scala-c81212d46712b0a1a25dee478993f4b9c1644330.tar.bz2
scala-c81212d46712b0a1a25dee478993f4b9c1644330.zip
grammar it's -> its
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/collection/TraversableLike.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/TraversableLike.scala b/src/library/scala/collection/TraversableLike.scala
index 32d31f0be8..96374ef653 100644
--- a/src/library/scala/collection/TraversableLike.scala
+++ b/src/library/scala/collection/TraversableLike.scala
@@ -54,7 +54,7 @@ import scala.language.higherKinds
* `HashMap` of objects. The traversal order for hash maps will
* depend on the hash codes of its elements, and these hash codes might
* differ from one run to the next. By contrast, a `LinkedHashMap`
- * is ordered because it's `foreach` method visits elements in the
+ * is ordered because its `foreach` method visits elements in the
* order they were inserted into the `HashMap`.
*
* @author Martin Odersky