summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@epfl.ch>2009-08-17 18:20:29 +0000
committerLukas Rytz <lukas.rytz@epfl.ch>2009-08-17 18:20:29 +0000
commite6dd85961eac8e23b2b8b603ec1762aa60def224 (patch)
treeb75189ec72c4976a5f310656eda9dcaabe036910 /src/compiler
parente484200310fcb4780a76e17a9fd42b98c3df0026 (diff)
downloadscala-e6dd85961eac8e23b2b8b603ec1762aa60def224.tar.gz
scala-e6dd85961eac8e23b2b8b603ec1762aa60def224.tar.bz2
scala-e6dd85961eac8e23b2b8b603ec1762aa60def224.zip
fixed typo #2263
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Typers.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Typers.scala b/src/compiler/scala/tools/nsc/typechecker/Typers.scala
index a2fcd28da1..94d3aae091 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Typers.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Typers.scala
@@ -1130,7 +1130,7 @@ trait Typers { self: Analyzer =>
"\n is not a subclass of the super"+ps.head.typeSymbol+
"\n of the mixin " + psym);
} else {
- error(parent.pos, psym+" needs to be a trait be mixed in")
+ error(parent.pos, psym+" needs to be a trait to be mixed in")
}
}
if (psym hasFlag FINAL) {