summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2011-04-21 15:53:02 +0100
committerIan Lynagh <igloo@earth.li>2011-04-21 15:53:02 +0100
commit70f79a6c3c40ca95efc1e2371f663c68c3bb5f08 (patch)
treea34b5ee082a7c63b5bfe0634307b88897507d148 /compiler
parent66a733f23eebbd69f6e2d00a9f73c4d5541b5c39 (diff)
downloadhaskell-70f79a6c3c40ca95efc1e2371f663c68c3bb5f08.tar.gz
Fix typo in comment
Diffstat (limited to 'compiler')
-rw-r--r--compiler/main/StaticFlags.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main/StaticFlags.hs b/compiler/main/StaticFlags.hs
index 049b61fedb..eddc9cad4c 100644
--- a/compiler/main/StaticFlags.hs
+++ b/compiler/main/StaticFlags.hs
@@ -167,7 +167,7 @@ try_read sw str
= case reads str of
((x,_):_) -> x -- Be forgiving: ignore trailing goop, and alternative parses
[] -> ghcError (UsageError ("Malformed argument " ++ str ++ " for flag " ++ sw))
- -- ToDo: hack alert. We should really parse the arugments
+ -- ToDo: hack alert. We should really parse the arguments
-- and announce errors in a more civilised way.