summaryrefslogtreecommitdiff
path: root/utils/mkUserGuidePart/Options/CompilerDebugging.hs
diff options
context:
space:
mode:
authorManav Rathi <mx4492@gmail.com>2016-02-25 14:51:32 +0100
committerBen Gamari <ben@smart-cactus.org>2016-02-25 15:41:55 +0100
commit665849142bca36c14bcb25d64180c153a1ef1f2c (patch)
tree64d4787d0e2af14ed57d637aaced6cc54a167571 /utils/mkUserGuidePart/Options/CompilerDebugging.hs
parent673efccb3b348e9daf23d9e65460691bbea8586e (diff)
downloadhaskell-665849142bca36c14bcb25d64180c153a1ef1f2c.tar.gz
Make warning names more consistent
- Replace "Sigs" with "Signatures" in WarningFlag data constructors. - Replace "PatSyn" with "PatternSynonym" in WarningFlag data constructors. - Deprecate "missing-local-sigs" in favor of "missing-local-signatures". - Deprecate "missing-exported-sigs" in favor of "missing-exported-signatures". - Deprecate "missing-pat-syn-signatures" in favor of "missing-pattern-synonym-signatures". - Replace "ddump-strsigs" with "ddump-str-signatures" These complete the tasks that were explicitly mentioned in #11583 Test Plan: Executed `ghc --show-options` and verified that the flags were changed as expected. Reviewers: svenpanne, austin, bgamari Reviewed By: austin, bgamari Subscribers: mpickering, thomie Differential Revision: https://phabricator.haskell.org/D1939 GHC Trac Issues: #11583
Diffstat (limited to 'utils/mkUserGuidePart/Options/CompilerDebugging.hs')
-rw-r--r--utils/mkUserGuidePart/Options/CompilerDebugging.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/mkUserGuidePart/Options/CompilerDebugging.hs b/utils/mkUserGuidePart/Options/CompilerDebugging.hs
index 3f1d89999d..ce84a2a48b 100644
--- a/utils/mkUserGuidePart/Options/CompilerDebugging.hs
+++ b/utils/mkUserGuidePart/Options/CompilerDebugging.hs
@@ -120,7 +120,7 @@ compilerDebuggingOptions =
, flagDescription = "Dump strictness analyser output"
, flagType = DynamicFlag
}
- , flag { flagName = "-ddump-strsigs"
+ , flag { flagName = "-ddump-str-signatures"
, flagDescription = "Dump strictness signatures"
, flagType = DynamicFlag
}