diff options
author | Gabor Greif <ggreif@gmail.com> | 2017-01-24 14:54:31 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2017-01-25 12:49:23 +0100 |
commit | e4ae78ae118f5b009a87b71f9ec21fb00962283a (patch) | |
tree | b7d52b11fac094b1f5e403f317ea9489550213aa /compiler/rename | |
parent | 675b54f399a9ef131183528b50a8aa4a06209f74 (diff) | |
download | haskell-e4ae78ae118f5b009a87b71f9ec21fb00962283a.tar.gz |
Typos in comments [ci skip]
Diffstat (limited to 'compiler/rename')
-rw-r--r-- | compiler/rename/RnEnv.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rename/RnEnv.hs b/compiler/rename/RnEnv.hs index 97718f88d2..7c05994c0a 100644 --- a/compiler/rename/RnEnv.hs +++ b/compiler/rename/RnEnv.hs @@ -648,7 +648,7 @@ But when adding to the UsedRdrNames we must make that qualification explicit (saying "used M.f"), otherwise we get "Redundant import of M.f". So we make up a suitable (fake) RdrName. But be careful - import qualifed M + import qualified M import M( C(f) ) instance C T where f x = x @@ -1155,7 +1155,7 @@ lookupQualifiedNameGHCi rdr_name ; return [] } } | otherwise - = do { traceRn "lookupQualifedNameGHCi: off" (ppr rdr_name) + = do { traceRn "lookupQualifiedNameGHCi: off" (ppr rdr_name) ; return [] } doc = text "Need to find" <+> ppr rdr_name |