diff options
author | Thomas Winant <thomas.winant@cs.kuleuven.be> | 2014-12-23 08:48:29 -0600 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-12-23 08:48:30 -0600 |
commit | 089222c9d6798c79179264e5c77c31d5c460a880 (patch) | |
tree | ffa95ef70c92e758f817c25ea730f36e6039a6ba /testsuite/tests/partial-sigs/should_compile/NamedTyVar.hs | |
parent | 6eb86a56135a9274d2c958a2ccf4df510c9dab86 (diff) | |
download | haskell-089222c9d6798c79179264e5c77c31d5c460a880.tar.gz |
Rename NamedWildcards flag to NamedWildCards
Summary:
Mind the capital C. As there is already a flag RecordWildCards with a capital
C, we should at least try to be consistent in the spelling of WildCards.
Test Plan: validate
Reviewers: goldfire, simonpj, austin
Reviewed By: simonpj, austin
Subscribers: carter, thomie
Differential Revision: https://phabricator.haskell.org/D584
Diffstat (limited to 'testsuite/tests/partial-sigs/should_compile/NamedTyVar.hs')
-rw-r--r-- | testsuite/tests/partial-sigs/should_compile/NamedTyVar.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/partial-sigs/should_compile/NamedTyVar.hs b/testsuite/tests/partial-sigs/should_compile/NamedTyVar.hs index e30cb7d064..c86a2ec72e 100644 --- a/testsuite/tests/partial-sigs/should_compile/NamedTyVar.hs +++ b/testsuite/tests/partial-sigs/should_compile/NamedTyVar.hs @@ -1,4 +1,4 @@ -{-# LANGUAGE PartialTypeSignatures, NamedWildcards #-} +{-# LANGUAGE PartialTypeSignatures, NamedWildCards #-} module NamedTyVar where foo :: (_a, b) -> (a, _b) |