diff options
author | Rik Steenkamp <rik@ewps.nl> | 2016-02-16 22:44:42 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-02-16 22:44:49 +0100 |
commit | 49c5cb40f049f0a868fa310a240a31b571f40491 (patch) | |
tree | 4d6d14d6f6fe6403e5e659825063ab1b9fda7e54 /testsuite/tests/monadfail | |
parent | 31160036c71f6f913623ea5c889ec3963d49768c (diff) | |
download | haskell-49c5cb40f049f0a868fa310a240a31b571f40491.tar.gz |
Fix typos
Reviewers: bgamari, austin
Reviewed By: austin
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D1915
Diffstat (limited to 'testsuite/tests/monadfail')
-rw-r--r-- | testsuite/tests/monadfail/MonadFailWarnings.stderr | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/tests/monadfail/MonadFailWarnings.stderr b/testsuite/tests/monadfail/MonadFailWarnings.stderr index 3d05126623..af2606a392 100644 --- a/testsuite/tests/monadfail/MonadFailWarnings.stderr +++ b/testsuite/tests/monadfail/MonadFailWarnings.stderr @@ -2,7 +2,7 @@ MonadFailWarnings.hs:19:5: warning: • Could not deduce (MonadFail m) arising from the failable pattern ‘Just x’ - (this will become an error a future GHC release) + (this will become an error in a future GHC release) from the context: Monad m bound by the type signature for: general :: Monad m => m a @@ -23,7 +23,7 @@ MonadFailWarnings.hs:19:5: warning: MonadFailWarnings.hs:35:5: warning: • No instance for (MonadFail Identity) arising from the failable pattern ‘Just x’ - (this will become an error a future GHC release) + (this will become an error in a future GHC release) • In a stmt of a 'do' block: Just x <- undefined In the expression: do { Just x <- undefined; @@ -36,7 +36,7 @@ MonadFailWarnings.hs:35:5: warning: MonadFailWarnings.hs:51:5: warning: • No instance for (MonadFail (ST s)) arising from the failable pattern ‘Just x’ - (this will become an error a future GHC release) + (this will become an error in a future GHC release) • In a stmt of a 'do' block: Just x <- undefined In the expression: do { Just x <- undefined; @@ -49,7 +49,7 @@ MonadFailWarnings.hs:51:5: warning: MonadFailWarnings.hs:59:5: warning: • No instance for (MonadFail ((->) r)) arising from the failable pattern ‘Just x’ - (this will become an error a future GHC release) + (this will become an error in a future GHC release) • In a stmt of a 'do' block: Just x <- undefined In the expression: do { Just x <- undefined; |