diff options
author | Simon Marlow <marlowsd@gmail.com> | 2012-06-08 09:12:49 +0100 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2012-06-11 16:19:21 +0100 |
commit | 24d9d1016304c736d74834b681dd7d9052de5ee6 (patch) | |
tree | fa8724ffaa66e5e45cb6fcef361d43cfd4922a9a /ghc | |
parent | ad6af5fc6db334a373ef3b7cca72143a8bf6b459 (diff) | |
download | haskell-24d9d1016304c736d74834b681dd7d9052de5ee6.tar.gz |
fix spelling: "infered" -> "inferred"
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/InteractiveUI.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/InteractiveUI.hs b/ghc/InteractiveUI.hs index 7e83565b1a..01fb45a879 100644 --- a/ghc/InteractiveUI.hs +++ b/ghc/InteractiveUI.hs @@ -1472,7 +1472,7 @@ isSafeModule m = do False -> liftIO $ putStrLn $ mname ++ " is NOT trusted!" where - goodTrust t = t `elem` [Sf_Safe, Sf_SafeInfered, Sf_Trustworthy] + goodTrust t = t `elem` [Sf_Safe, Sf_SafeInferred, Sf_Trustworthy] mname = GHC.moduleNameString $ GHC.moduleName m |