summaryrefslogtreecommitdiff
path: root/hadrian
diff options
context:
space:
mode:
authorBrian Wignall <brianwignall@gmail.com>2020-01-10 10:47:46 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-01-12 21:30:08 -0500
commit0b5ddc7f2c10ee84631dd6cb5f6368afbc389449 (patch)
treed9a77d5b2c55d75d9ae5b6fa199612315de9d163 /hadrian
parent350e2b78788d47255d27489dfc62d664498b5de4 (diff)
downloadhaskell-0b5ddc7f2c10ee84631dd6cb5f6368afbc389449.tar.gz
Fix more typos, via an improved Levenshtein-style corrector
Diffstat (limited to 'hadrian')
-rw-r--r--hadrian/README.md2
-rw-r--r--hadrian/src/Hadrian/BuildPath.hs2
-rw-r--r--hadrian/src/Hadrian/Utilities.hs2
3 files changed, 3 insertions, 3 deletions
diff --git a/hadrian/README.md b/hadrian/README.md
index 828761ef0f..ab343c98e8 100644
--- a/hadrian/README.md
+++ b/hadrian/README.md
@@ -106,7 +106,7 @@ simply drop the `--freeze1` flag and Hadrian will rebuild all out-of-date files.
* `--color` and `--no-color`: choose whether to use colors when printing build
progress info. By default, Hadrian tries to determine if the terminal supports
-colored ouput, and proceeds accordingly.
+colored output, and proceeds accordingly.
* `--progress-info=STYLE`: choose how build progress info is printed. There are
four settings: `none`, `brief` (one line per build command; this is the default
diff --git a/hadrian/src/Hadrian/BuildPath.hs b/hadrian/src/Hadrian/BuildPath.hs
index 499897d177..8e059ce7d4 100644
--- a/hadrian/src/Hadrian/BuildPath.hs
+++ b/hadrian/src/Hadrian/BuildPath.hs
@@ -40,7 +40,7 @@ parseBuildPath root afterBuild = do
--
-- > <build root>/stage<N>/lib/<arch>-<os>-ghc-<ghc version>/<something>
--
--- where @something@ describes a library or object file or ... to be registerd
+-- where @something@ describes a library or object file or ... to be registered
-- for the given package. These are files registered into a ghc-pkg database.
--
-- @a@, which represents that @something@, is instantiated with library-related
diff --git a/hadrian/src/Hadrian/Utilities.hs b/hadrian/src/Hadrian/Utilities.hs
index 8c9cfefe81..7419722b3f 100644
--- a/hadrian/src/Hadrian/Utilities.hs
+++ b/hadrian/src/Hadrian/Utilities.hs
@@ -441,7 +441,7 @@ newtype BuildProgressColour = BuildProgressColour String
deriving Typeable
-- | By default, Hadrian tries to figure out if the current terminal
--- supports colors using this function. The default can be overriden
+-- supports colors using this function. The default can be overridden
-- by suppling @--[no-]color@.
shouldUseColor :: IO Bool
shouldUseColor =