summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorsimonpj@microsoft.com <unknown>2009-11-02 17:22:36 +0000
committersimonpj@microsoft.com <unknown>2009-11-02 17:22:36 +0000
commit560bf7c0d6a718ab7c14f286469f68a6244b5a1a (patch)
tree6e76b1684898d49d1f822dba6a6d820a38c71228 /compiler
parent07fae6d68aac2c2c398c010495d9542c1eb9b9b7 (diff)
downloadhaskell-560bf7c0d6a718ab7c14f286469f68a6244b5a1a.tar.gz
Minor change to captalisation in error message only
Diffstat (limited to 'compiler')
-rw-r--r--compiler/main/DynFlags.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs
index e5a549af6b..cd0f21294e 100644
--- a/compiler/main/DynFlags.hs
+++ b/compiler/main/DynFlags.hs
@@ -1812,7 +1812,7 @@ xFlags = [
( "Rank2Types", Opt_Rank2Types, const Supported ),
( "RankNTypes", Opt_RankNTypes, const Supported ),
( "ImpredicativeTypes", Opt_ImpredicativeTypes,
- const $ Deprecated "Impredicative polymorphism will be simplified or removed in GHC 6.14" ),
+ const $ Deprecated "impredicative polymorphism will be simplified or removed in GHC 6.14" ),
( "TypeOperators", Opt_TypeOperators, const Supported ),
( "RecursiveDo", Opt_RecursiveDo,
deprecatedForLanguage "DoRec"),