diff options
author | Gabor Greif <ggreif@gmail.com> | 2017-01-31 12:41:29 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2017-02-01 09:21:58 +0100 |
commit | 99e920c1287e0b11892b47078e8d0dfabef8e0f2 (patch) | |
tree | b029e0530365ad4dc9b66826ff1351fb2be69878 /testsuite/tests/deSugar/should_run | |
parent | 25e0cfc676ef07647cb16a7206d686eaa0eddcc9 (diff) | |
download | haskell-99e920c1287e0b11892b47078e8d0dfabef8e0f2.tar.gz |
Typos in note header and test
Diffstat (limited to 'testsuite/tests/deSugar/should_run')
-rw-r--r-- | testsuite/tests/deSugar/should_run/DsStrict.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/deSugar/should_run/DsStrict.stdout | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/deSugar/should_run/DsStrict.hs b/testsuite/tests/deSugar/should_run/DsStrict.hs index ef3f06fd45..aa11735c0d 100644 --- a/testsuite/tests/deSugar/should_run/DsStrict.hs +++ b/testsuite/tests/deSugar/should_run/DsStrict.hs @@ -14,7 +14,7 @@ f1' ~n = case n of ~a -> "case2" -f2 = \a -> "lamda" +f2 = \a -> "lambda" f2' = \ ~a -> "lambda2" newtype Age = MkAge Int diff --git a/testsuite/tests/deSugar/should_run/DsStrict.stdout b/testsuite/tests/deSugar/should_run/DsStrict.stdout index 7895f2a0cb..ec66884972 100644 --- a/testsuite/tests/deSugar/should_run/DsStrict.stdout +++ b/testsuite/tests/deSugar/should_run/DsStrict.stdout @@ -2,7 +2,7 @@ fun fun2 case case2 -lamda +lambda lambda2 newtype newtype2 |