summaryrefslogtreecommitdiff
path: root/libraries
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2016-10-31 12:08:50 +0100
committerGabor Greif <ggreif@gmail.com>2016-10-31 12:28:53 +0100
commit80d4a03332e09064e5542924f2897d7eb573f19e (patch)
tree34f1dcee354d631d5e2786d33f0b1bf7058e6f77 /libraries
parent7ddbdfd399a91eed410f3bd5a7caff2fd4bcce92 (diff)
downloadhaskell-80d4a03332e09064e5542924f2897d7eb573f19e.tar.gz
Typos in comments
Diffstat (limited to 'libraries')
-rw-r--r--libraries/base/System/Console/GetOpt.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/System/Console/GetOpt.hs b/libraries/base/System/Console/GetOpt.hs
index 3f36f1f7b3..38cccc2ed4 100644
--- a/libraries/base/System/Console/GetOpt.hs
+++ b/libraries/base/System/Console/GetOpt.hs
@@ -124,7 +124,7 @@ data OptKind a -- kind of cmd line arg (internal use only):
-- second argument.
usageInfo :: String -- header
-> [OptDescr a] -- option descriptors
- -> String -- nicely formatted decription of options
+ -> String -- nicely formatted description of options
usageInfo header optDescr = unlines (header:table)
where (ss,ls,ds) = (unzip3 . concatMap fmtOpt) optDescr
table = zipWith3 paste (sameLen ss) (sameLen ls) ds