summaryrefslogtreecommitdiff
path: root/test/files/pos/delambdafy-patterns.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/delambdafy-patterns.scala')
-rw-r--r--test/files/pos/delambdafy-patterns.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/delambdafy-patterns.scala b/test/files/pos/delambdafy-patterns.scala
index 95d498629b..ca9eaa67e3 100644
--- a/test/files/pos/delambdafy-patterns.scala
+++ b/test/files/pos/delambdafy-patterns.scala
@@ -2,7 +2,7 @@ class DelambdafyPatterns {
def bar: Unit = ()
def wildcardPatternInTryCatch: Unit => Unit = (x: Unit) =>
// patterns in try..catch are preserved so we need to be
- // careful when it comes to free variable detction
+ // careful when it comes to free variable detection
// in particular a is _not_ free variable, also the
// `_` identifier has no symbol attached to it
try bar catch {