From 70f79a6c3c40ca95efc1e2371f663c68c3bb5f08 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Thu, 21 Apr 2011 15:53:02 +0100 Subject: [PATCH] Fix typo in comment --- compiler/main/StaticFlags.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 1.7.10.4