Skip to content

Commit 6e1cb3b

Browse files
committed
Fix comments.
1 parent 64fd71c commit 6e1cb3b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/Data/Binary/Class.hs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -849,17 +849,17 @@ instance Binary a => Binary (NE.NonEmpty a) where
849849
-- * 'SomeTypeRep' (also known as 'Data.Typeable.TypeRep')
850850
--
851851

852-
-- | @since 0.9.0.0. See #typeable-instances#
852+
-- | @since 0.8.5.0. See #typeable-instances#
853853
instance Binary VecCount where
854854
put = putWord8 . fromIntegral . fromEnum
855855
get = toEnum . fromIntegral <$> getWord8
856856

857-
-- | @since 0.9.0.0. See #typeable-instances#
857+
-- | @since 0.8.5.0. See #typeable-instances#
858858
instance Binary VecElem where
859859
put = putWord8 . fromIntegral . fromEnum
860860
get = toEnum . fromIntegral <$> getWord8
861861

862-
-- | @since 0.9.0.0. See #typeable-instances#
862+
-- | @since 0.8.5.0. See #typeable-instances#
863863
instance Binary RuntimeRep where
864864
put (VecRep a b) = putWord8 0 >> put a >> put b
865865
put (TupleRep reps) = putWord8 1 >> put reps
@@ -891,7 +891,7 @@ instance Binary RuntimeRep where
891891
11 -> pure DoubleRep
892892
_ -> fail "GHCi.TH.Binary.putRuntimeRep: invalid tag"
893893

894-
-- | @since 0.9.0.0. See #typeable-instances#
894+
-- | @since 0.8.5.0. See #typeable-instances#
895895
instance Binary TyCon where
896896
put tc = do
897897
put (tyConPackage tc)
@@ -901,7 +901,7 @@ instance Binary TyCon where
901901
put (tyConKindRep tc)
902902
get = mkTyCon <$> get <*> get <*> get <*> get <*> get
903903

904-
-- | @since 0.9.0.0. See #typeable-instances#
904+
-- | @since 0.8.5.0. See #typeable-instances#
905905
instance Binary KindRep where
906906
put (KindRepTyConApp tc k) = putWord8 0 >> put tc >> put k
907907
put (KindRepVar bndr) = putWord8 1 >> put bndr
@@ -921,7 +921,7 @@ instance Binary KindRep where
921921
5 -> KindRepTypeLit <$> get <*> get
922922
_ -> fail "GHCi.TH.Binary.putKindRep: invalid tag"
923923

924-
-- | @since 0.9.0.0. See #typeable-instances#
924+
-- | @since 0.8.5.0. See #typeable-instances#
925925
instance Binary TypeLitSort where
926926
put TypeLitSymbol = putWord8 0
927927
put TypeLitNat = putWord8 1

0 commit comments

Comments
 (0)