summaryrefslogtreecommitdiff
path: root/src/reflect
diff options
context:
space:
mode:
authorxuwei-k <6b656e6a69@gmail.com>2014-10-20 15:29:52 +0900
committerxuwei-k <6b656e6a69@gmail.com>2014-10-20 15:29:52 +0900
commitcbdb212ab4534556441b159e2c82cf0506576fca (patch)
treec341246694aefef9893817505b00911bdecbf5a6 /src/reflect
parent2b5df373638d08204b71258928289f6b39e25d5f (diff)
downloadscala-cbdb212ab4534556441b159e2c82cf0506576fca.tar.gz
scala-cbdb212ab4534556441b159e2c82cf0506576fca.tar.bz2
scala-cbdb212ab4534556441b159e2c82cf0506576fca.zip
fix typo. s/represenation/representation
Diffstat (limited to 'src/reflect')
-rw-r--r--src/reflect/scala/reflect/internal/ReificationSupport.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reflect/scala/reflect/internal/ReificationSupport.scala b/src/reflect/scala/reflect/internal/ReificationSupport.scala
index 759bd2e791..0a7a33cdd8 100644
--- a/src/reflect/scala/reflect/internal/ReificationSupport.scala
+++ b/src/reflect/scala/reflect/internal/ReificationSupport.scala
@@ -123,7 +123,7 @@ trait ReificationSupport { self: SymbolTable =>
if (vd.rhs.nonEmpty) newmods |= DEFAULTPARAM
copyValDef(vd)(mods = newmods | extraFlags)
case _ =>
- throw new IllegalArgumentException(s"$tree is not valid represenation of a parameter, " +
+ throw new IllegalArgumentException(s"$tree is not valid representation of a parameter, " +
"""consider reformatting it into q"val $name: $T = $default" shape""")
}