summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/transform/Delambdafy.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2016-03-21 13:37:39 +1000
committerJason Zaugg <jzaugg@gmail.com>2016-03-21 13:37:39 +1000
commitad48e5918081c679546f50b6f52dd8e0813754e7 (patch)
tree7a3909e11eb83be87ecf7602f780806ac15fae15 /src/compiler/scala/tools/nsc/transform/Delambdafy.scala
parent0f5801ed83179e4de4ec3e8a91ffc86d0e657f4f (diff)
parent910a18ed14dd81150f008e785f8773bf997eb1f6 (diff)
downloadscala-ad48e5918081c679546f50b6f52dd8e0813754e7.tar.gz
scala-ad48e5918081c679546f50b6f52dd8e0813754e7.tar.bz2
scala-ad48e5918081c679546f50b6f52dd8e0813754e7.zip
Merge pull request #5043 from dongjoon-hyun/fix_typos_in_spec_and_comments
Fix some typos in `spec` documents and comments.
Diffstat (limited to 'src/compiler/scala/tools/nsc/transform/Delambdafy.scala')
-rw-r--r--src/compiler/scala/tools/nsc/transform/Delambdafy.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/transform/Delambdafy.scala b/src/compiler/scala/tools/nsc/transform/Delambdafy.scala
index 4e073b65e5..67e3f67f2f 100644
--- a/src/compiler/scala/tools/nsc/transform/Delambdafy.scala
+++ b/src/compiler/scala/tools/nsc/transform/Delambdafy.scala
@@ -8,7 +8,7 @@ import scala.collection.mutable.LinkedHashMap
/**
* This transformer is responsible for preparing lambdas for runtime, by either translating to anonymous classes
- * or to a tree that will be convereted to invokedynamic by the JVM 1.8+ backend.
+ * or to a tree that will be converted to invokedynamic by the JVM 1.8+ backend.
*
* The main assumption it makes is that a lambda {args => body} has been turned into
* {args => liftedBody()} where lifted body is a top level method that implements the body of the lambda.