Skip to content

Commit

Permalink
Fix show instance
Browse files Browse the repository at this point in the history
  • Loading branch information
phadej committed Jul 2, 2020
1 parent 087b84e commit 6c9c65c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ instance KnownNat n => Ord (MLockedFiniteBytes n) where

instance KnownNat n => Show (MLockedFiniteBytes n) where
showsPrec d _ = showParen (d > 10)
$ showString "_ :: MLockedFiniteBytes"
$ showString "_ :: MLockedFiniteBytes "
. showsPrec 11 (natVal (Proxy @n))

instance NFData (MLockedFiniteBytes n) where
Expand Down

0 comments on commit 6c9c65c

Please sign in to comment.