summaryrefslogtreecommitdiff
path: root/test/files/pos/t1164.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1164.scala')
-rw-r--r--test/files/pos/t1164.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t1164.scala b/test/files/pos/t1164.scala
index b238bf54d9..ca780c9a26 100644
--- a/test/files/pos/t1164.scala
+++ b/test/files/pos/t1164.scala
@@ -12,7 +12,7 @@ object test {
def matchAndGetArgFromFoo[a]( e:Foo[a]):a = {e match { case Foo(x) => x }}
- // Try the same thing as above but use function as arguemnt to Bar
+ // Try the same thing as above but use function as argument to Bar
// constructor
type FunIntToA [a] = (Int) => a