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 | |
parent | fee403fd935479e8a1ad563fd07585d91c7e04a2 (diff) | |
download | haskell-d97a6fe2b97c81a167219eae892d3820c0685435.tar.gz |
Fix typos in diagnostics, testsuite and comments
Diffstat (limited to 'libraries/ghci')
-rw-r--r-- | libraries/ghci/GHCi/CreateBCO.hs | 6 | ||||
-rw-r--r-- | libraries/ghci/GHCi/ResolvedBCO.hs | 6 |
2 files changed, 6 insertions, 6 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 diff --git a/libraries/ghci/GHCi/ResolvedBCO.hs b/libraries/ghci/GHCi/ResolvedBCO.hs index 37836a4e62..f56ee6d6d9 100644 --- a/libraries/ghci/GHCi/ResolvedBCO.hs +++ b/libraries/ghci/GHCi/ResolvedBCO.hs @@ -46,9 +46,9 @@ data ResolvedBCO -- | The Binary instance for ResolvedBCOs. -- --- Note, that we do encode the endianess, however there is no support for mixed --- endianess setups. This is primarily to ensure that ghc and iserv share the --- same endianess. +-- Note, that we do encode the endianness, however there is no support for mixed +-- endianness setups. This is primarily to ensure that ghc and iserv share the +-- same endianness. instance Binary ResolvedBCO where put ResolvedBCO{..} = do put resolvedBCOIsLE |