summaryrefslogtreecommitdiff
path: root/hadrian/src/Flavour.hs
diff options
context:
space:
mode:
authorEric Lindblad <lindblad@gmx.us>2022-03-30 13:00:44 -0500
committerMatthew Pickering <matthewtpickering@gmail.com>2022-04-01 11:04:12 +0100
commit418e6fab732b9aaa0a00c5e235f445fb547ae196 (patch)
tree40c8716387f9b5dec628cb49166c1bc21694fec2 /hadrian/src/Flavour.hs
parentb2785cfc60f3c481f35181c41729561113866974 (diff)
downloadhaskell-418e6fab732b9aaa0a00c5e235f445fb547ae196.tar.gz
two typos
Diffstat (limited to 'hadrian/src/Flavour.hs')
-rw-r--r--hadrian/src/Flavour.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/hadrian/src/Flavour.hs b/hadrian/src/Flavour.hs
index 33d4d68ec4..288d5ccc3d 100644
--- a/hadrian/src/Flavour.hs
+++ b/hadrian/src/Flavour.hs
@@ -352,7 +352,7 @@ applySettings kvs = case partitionEithers (map applySetting kvs) of
-- x = -b
-- x += -c
-- produce the final x = "-b -c" value. With just (.) we would apply
- -- the x = -b assignment last, which would silently drop the -c adddition.
+ -- the x = -b assignment last, which would silently drop the -c addition.
--
-- foldr (.) id [f, g, h] = f . g . h
-- -- first function (f) is applied last, we're applying them in