summaryrefslogtreecommitdiff
path: root/test/files/jvm/javaReflection/Test.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2015-04-22 17:11:22 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2015-04-22 17:11:22 -0700
commit540b18fb68a0210b187e595622c31f20b2c6f581 (patch)
tree82d04875656560792928e6df501659a1d06b8121 /test/files/jvm/javaReflection/Test.scala
parent20f7389c4cb24e44c382b6d1e60e871eb5114173 (diff)
parenta4c68e9bf7aa15483913900dd1bb3fd02dcc7363 (diff)
downloadscala-540b18fb68a0210b187e595622c31f20b2c6f581.tar.gz
scala-540b18fb68a0210b187e595622c31f20b2c6f581.tar.bz2
scala-540b18fb68a0210b187e595622c31f20b2c6f581.zip
Merge pull request #4461 from adriaanm/rebase-4446
Fix many typos
Diffstat (limited to 'test/files/jvm/javaReflection/Test.scala')
-rw-r--r--test/files/jvm/javaReflection/Test.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/jvm/javaReflection/Test.scala b/test/files/jvm/javaReflection/Test.scala
index 5b6ef1b573..ae5a36eeb2 100644
--- a/test/files/jvm/javaReflection/Test.scala
+++ b/test/files/jvm/javaReflection/Test.scala
@@ -124,8 +124,8 @@ object Test {
// exclude files from Test.scala, just take those from Classes_1.scala
case s if !s.startsWith("Test") && s.endsWith(".class") => s.substring(0, s.length - 6)
}).sortWith((a, b) => {
- // sort such that first there are all anonymous funcitions, then all other classes.
- // within those cathegories, sort lexically.
+ // sort such that first there are all anonymous functions, then all other classes.
+ // within those categories, sort lexically.
// this makes the check file smaller: it differs for anonymous functions between -Ydelambdafy:inline/method.
// the other classes are the same.
if (isAnonFunClassName(a)) !isAnonFunClassName(b) || a < b