diff options
author | Gabor Greif <ggreif@gmail.com> | 2017-09-06 14:42:02 +0200 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2017-09-07 11:55:07 +0200 |
commit | d97a6fe2b97c81a167219eae892d3820c0685435 (patch) | |
tree | 4387af534308dbaa966a80f28abc3ceeabf43219 /libraries/ghci/GHCi/CreateBCO.hs | |
parent | fee403fd935479e8a1ad563fd07585d91c7e04a2 (diff) | |
download | haskell-d97a6fe2b97c81a167219eae892d3820c0685435.tar.gz |
Fix typos in diagnostics, testsuite and comments
Diffstat (limited to 'libraries/ghci/GHCi/CreateBCO.hs')
-rw-r--r-- | libraries/ghci/GHCi/CreateBCO.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/ghci/GHCi/CreateBCO.hs b/libraries/ghci/GHCi/CreateBCO.hs index aae4b686fa..ca7726ccff 100644 --- a/libraries/ghci/GHCi/CreateBCO.hs +++ b/libraries/ghci/GHCi/CreateBCO.hs @@ -38,9 +38,9 @@ createBCOs bcos = do createBCO :: Array Int HValue -> ResolvedBCO -> IO HValue createBCO _ ResolvedBCO{..} | resolvedBCOIsLE /= isLittleEndian = throwIO (ErrorCall $ - unlines [ "The endianess of the ResolvedBCO does not match" - , "the systems endianess. Using ghc and iserv in a" - , "mixed endianess setup is not supported!" + unlines [ "The endianness of the ResolvedBCO does not match" + , "the systems endianness. Using ghc and iserv in a" + , "mixed endianness setup is not supported!" ]) createBCO arr bco = do BCO bco# <- linkBCO' arr bco |