summaryrefslogtreecommitdiff
path: root/compiler/utils
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2017-05-09 13:49:00 +0200
committerGabor Greif <ggreif@gmail.com>2017-05-10 10:01:46 +0200
commit22a03e7288129a165dc2cb866041185a06adb0e9 (patch)
treef7c06e4716c8c0df2c800582368a2195fa8e8c7f /compiler/utils
parent8e72a2eee29543f8a663256f6b8cf4422692cb3a (diff)
downloadhaskell-22a03e7288129a165dc2cb866041185a06adb0e9.tar.gz
Typos [ci skip]
Diffstat (limited to 'compiler/utils')
-rw-r--r--compiler/utils/Binary.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/utils/Binary.hs b/compiler/utils/Binary.hs
index 9d385d23ea..99ab07ec33 100644
--- a/compiler/utils/Binary.hs
+++ b/compiler/utils/Binary.hs
@@ -336,7 +336,7 @@ getByte :: BinHandle -> IO Word8
getByte h = getWord8 h
-- -----------------------------------------------------------------------------
--- Primitve Word writes
+-- Primitive Word writes
instance Binary Word8 where
put_ = putWord8
@@ -355,7 +355,7 @@ instance Binary Word64 where
get h = getWord64 h
-- -----------------------------------------------------------------------------
--- Primitve Int writes
+-- Primitive Int writes
instance Binary Int8 where
put_ h w = put_ h (fromIntegral w :: Word8)