From: Ian Lynagh Date: Thu, 21 Apr 2011 14:53:02 +0000 (+0100) Subject: Fix typo in comment X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=70f79a6c3c40ca95efc1e2371f663c68c3bb5f08;p=ghc-hetmet.git Fix typo in comment --- diff --git a/compiler/main/StaticFlags.hs b/compiler/main/StaticFlags.hs index 049b61f..eddc9ca 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.