summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan@lightbend.com>2016-07-05 15:42:38 -0700
committerGitHub <noreply@github.com>2016-07-05 15:42:38 -0700
commit27a4f4d6b2c00df778a1da60fefc0f8f6a77edce (patch)
treee91750644378d91b6a0bad489d46d0eb00a3ac2f /test
parent968276345e9b0dae66ef025c2a6fdca013f295e5 (diff)
parentd45a9a6a70a8180987c4b65cd36107955d20ec8f (diff)
downloadscala-27a4f4d6b2c00df778a1da60fefc0f8f6a77edce.tar.gz
scala-27a4f4d6b2c00df778a1da60fefc0f8f6a77edce.tar.bz2
scala-27a4f4d6b2c00df778a1da60fefc0f8f6a77edce.zip
Merge pull request #5247 from mo/2.12.x
Fix typo in test comment
Diffstat (limited to 'test')
-rw-r--r--test/files/run/t3326.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t3326.scala b/test/files/run/t3326.scala
index 4ac7ef9138..b6b4eac784 100644
--- a/test/files/run/t3326.scala
+++ b/test/files/run/t3326.scala
@@ -19,7 +19,7 @@ import scala.math.Ordering
* This is why `collection.SortedMap` used to resort to the generic
* `TraversableLike.++` which knows nothing about the ordering.
*
- * To avoid `collection.SortedMap`s resort to the more generic `TraverableLike.++`,
+ * To avoid `collection.SortedMap`s resort to the more generic `TraversableLike.++`,
* we override the `MapLike.++` overload in `collection.SortedMap` to return
* the proper type `SortedMap`.
*/