summaryrefslogtreecommitdiff
path: root/src/reflect
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-11-04 13:42:13 +1000
committerJason Zaugg <jzaugg@gmail.com>2014-11-04 13:42:13 +1000
commitb083b3902c91070c12888b2777642dd19e3536f1 (patch)
tree89ccbf05315e68d25b63ba94d46e7a406ddb8b91 /src/reflect
parente35e107118814616e0cbf5609c95184b872d1f0f (diff)
parentcbdb212ab4534556441b159e2c82cf0506576fca (diff)
downloadscala-b083b3902c91070c12888b2777642dd19e3536f1.tar.gz
scala-b083b3902c91070c12888b2777642dd19e3536f1.tar.bz2
scala-b083b3902c91070c12888b2777642dd19e3536f1.zip
Merge pull request #4064 from xuwei-k/typo-representation
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""")
}