summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-02-25 06:40:29 -0800
committerPaul Phillips <paulp@improving.org>2013-02-25 06:40:29 -0800
commitf2be783020a1c8e05ebcae3717740632b41d1751 (patch)
treef788e353cdf74edc0269363f38a4b4daadeb861f /src/compiler/scala/tools/nsc/typechecker/Implicits.scala
parentfd4dadd1254f17dc9eb265bfd01b3324a7ad31f5 (diff)
parentd6527d5083d77f67d08749b800938c97e0fcf13a (diff)
downloadscala-f2be783020a1c8e05ebcae3717740632b41d1751.tar.gz
scala-f2be783020a1c8e05ebcae3717740632b41d1751.tar.bz2
scala-f2be783020a1c8e05ebcae3717740632b41d1751.zip
Merge pull request #2165 from retronym/topic/empty-paren
Spring cleaning
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/Implicits.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Implicits.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Implicits.scala b/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
index 788825a6b6..c0391448d1 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
@@ -1113,7 +1113,7 @@ trait Implicits {
case ThisType(thisSym) =>
gen.mkAttributedThis(thisSym)
case _ =>
- // if ``pre'' is not a PDT, e.g. if someone wrote
+ // if `pre` is not a PDT, e.g. if someone wrote
// implicitly[scala.reflect.macros.Context#TypeTag[Int]]
// then we need to fail, because we don't know the prefix to use during type reification
// upd. we also need to fail silently, because this is a very common situation