diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2016-01-25 14:51:50 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-01-25 16:04:59 +0100 |
commit | 132c20894d102558cc8f3aee5bc289425d0ddb24 (patch) | |
tree | cd904440d86342d1d0d91f7e265e12593fd4bc8d /testsuite/tests/rebindable | |
parent | bc1e085c5dc239b66e970fdc5117aec0933a9a37 (diff) | |
download | haskell-132c20894d102558cc8f3aee5bc289425d0ddb24.tar.gz |
Rename -Wmissing-monadfail-instance to plural-form
This warning flag was recently introduced as part of #10751. However,
it was missed during code-review that almost all existing warning
flags use a plural-form, so for consistency this commit renames
that warning flag to `-Wmissing-monadfail-instances`.
Test Plan: local validate (still running)
Reviewers: quchen, goldfire, austin, bgamari
Reviewed By: bgamari
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D1842
GHC Trac Issues: #10751
Diffstat (limited to 'testsuite/tests/rebindable')
-rw-r--r-- | testsuite/tests/rebindable/rebindable1.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/rebindable/rebindable1.hs b/testsuite/tests/rebindable/rebindable1.hs index 7bf3e237a6..4ff8ed2d4d 100644 --- a/testsuite/tests/rebindable/rebindable1.hs +++ b/testsuite/tests/rebindable/rebindable1.hs @@ -1,4 +1,4 @@ -{-# OPTIONS_GHC -fno-warn-missing-monadfail-instance #-} +{-# OPTIONS_GHC -Wno-missing-monadfail-instances #-} {-# LANGUAGE RebindableSyntax, NPlusKPatterns #-} module RebindableCase1 where |