Fix typo in comment
authorIan Lynagh <igloo@earth.li>
Thu, 21 Apr 2011 14:53:02 +0000 (15:53 +0100)
committerIan Lynagh <igloo@earth.li>
Thu, 21 Apr 2011 14:53:02 +0000 (15:53 +0100)
compiler/main/StaticFlags.hs

index 049b61f..eddc9ca 100644 (file)
@@ -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.