summaryrefslogtreecommitdiff
path: root/mk/warnings.mk
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2016-01-07 11:48:16 +0100
committerGabor Greif <ggreif@gmail.com>2016-01-07 11:48:16 +0100
commitc78fedde7055490ca6f6210ada797190f3c35d87 (patch)
treede4fc884f27401ef872607ed02a57ed03774cb28 /mk/warnings.mk
parent1ee92293651c0cc70504df1a4450febb986ad891 (diff)
downloadhaskell-c78fedde7055490ca6f6210ada797190f3c35d87.tar.gz
Typos in docs and comments
Diffstat (limited to 'mk/warnings.mk')
-rw-r--r--mk/warnings.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/warnings.mk b/mk/warnings.mk
index cf220429ee..abbee68735 100644
--- a/mk/warnings.mk
+++ b/mk/warnings.mk
@@ -123,10 +123,10 @@ GhcBootLibExtraHcOpts += -fno-warn-deprecated-flags
# * Most .cabal files specify -Wall. But not all, and not all building we
# do relies on .cabal files. So we have to add -Wall ourselves somewhere.
#
-# * Some .cabal also specify warning supression flags. Because -Wall
-# overrides any warning supression flags that come before it, we have to
-# make sure -Wall comes before any warning supression flags. So we add it
+# * Some .cabal also specify warning suppression flags. Because -Wall
+# overrides any warning suppression flags that come before it, we have to
+# make sure -Wall comes before any warning suppression flags. So we add it
# to SRC_HC_OPTS.
#
-# * Similarly, our own warning supression should come after the -Wall from
+# * Similarly, our own warning suppression should come after the -Wall from
# the .cabal files, so we do *not* add them to SRC_HC_OPTS.