diff options
Diffstat (limited to 'libraries/ghci/GHCi/ResolvedBCO.hs')
-rw-r--r-- | libraries/ghci/GHCi/ResolvedBCO.hs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libraries/ghci/GHCi/ResolvedBCO.hs b/libraries/ghci/GHCi/ResolvedBCO.hs index 37836a4e62..5942d37b10 100644 --- a/libraries/ghci/GHCi/ResolvedBCO.hs +++ b/libraries/ghci/GHCi/ResolvedBCO.hs @@ -6,6 +6,7 @@ module GHCi.ResolvedBCO , isLittleEndian ) where +import Prelude -- See note [Why do we import Prelude here?] import SizedSeq import GHCi.RemoteTypes import GHCi.BreakArray @@ -46,9 +47,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 |