summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/classpath
diff options
context:
space:
mode:
authorJanek Bogucki <janekdb@gmail.com>2017-02-12 21:24:56 +0000
committerJanek Bogucki <janekdb@gmail.com>2017-02-13 10:21:25 +0000
commit1eb331b4196492f8f8084a2c102272c3a9c0cd2d (patch)
tree7f917176a882c8fbede98f63a528ec55bb623420 /src/compiler/scala/tools/nsc/classpath
parent4bbb7afabe909881a84ed283d7a1b65ef4410973 (diff)
downloadscala-1eb331b4196492f8f8084a2c102272c3a9c0cd2d.tar.gz
scala-1eb331b4196492f8f8084a2c102272c3a9c0cd2d.tar.bz2
scala-1eb331b4196492f8f8084a2c102272c3a9c0cd2d.zip
Fix typos in compiler and reflect
Miscellania: Miscellania is a small island off the northernmost part of the Fremennik Isles - RunScape Wiki Miscellanea: A collection of miscellaneous objects or writings - Merriam-Webster
Diffstat (limited to 'src/compiler/scala/tools/nsc/classpath')
-rw-r--r--src/compiler/scala/tools/nsc/classpath/DirectoryClassPath.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/classpath/DirectoryClassPath.scala b/src/compiler/scala/tools/nsc/classpath/DirectoryClassPath.scala
index 133a656206..1ea152b29c 100644
--- a/src/compiler/scala/tools/nsc/classpath/DirectoryClassPath.scala
+++ b/src/compiler/scala/tools/nsc/classpath/DirectoryClassPath.scala
@@ -106,7 +106,7 @@ trait JFileDirectoryLookup[FileEntryType <: ClassRepresentation] extends Directo
// as the type of `case class C(); case class D(); List(C(), D()).head`, rather than the opposite order.
// On Mac, the HFS performs this sorting transparently, but on Linux the order is unspecified.
//
- // Note this behaviour can be enabled with in javac with `javac -XDsortfiles`, but that's only
+ // Note this behaviour can be enabled in javac with `javac -XDsortfiles`, but that's only
// intended to improve determinism of the compiler for compiler hackers.
util.Arrays.sort(listing, (o1: File, o2: File) => o1.getName.compareTo(o2.getName))
listing