summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2010-10-19 13:33:33 +0000
committerMartin Odersky <odersky@gmail.com>2010-10-19 13:33:33 +0000
commit79389bc80d08b18e20372c181a5749b8efc9614d (patch)
treec049edb7f443ca97da937d120906ca79eda41b6d /src
parented65254c4f1bfc0ba7f8b8053bdafbdd8bccb670 (diff)
downloadscala-79389bc80d08b18e20372c181a5749b8efc9614d.tar.gz
scala-79389bc80d08b18e20372c181a5749b8efc9614d.tar.bz2
scala-79389bc80d08b18e20372c181a5749b8efc9614d.zip
Closes #3934 by fixing a typo (missing + in str...
Closes #3934 by fixing a typo (missing + in string concat). Better effect analysis would have caught that one at compile-time. Review by extempore.
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Contexts.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Contexts.scala b/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
index 3e7f755b8e..7f182326dd 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
@@ -419,7 +419,7 @@ trait Contexts { self: Analyzer =>
if (!res)
lastAccessCheckDetails =
"\n Access to protected "+target+" not permitted because"+
- "\n prefix type "+pre.widen+" does not conform to"
+ "\n prefix type "+pre.widen+" does not conform to"+
"\n "+c.owner+c.owner.locationString+" where the access take place"
res
}