summaryrefslogtreecommitdiffhomepage
path: root/Val.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Val.hs')
-rw-r--r--Val.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Val.hs b/Val.hs
index 80ab8ed..3493bcd 100644
--- a/Val.hs
+++ b/Val.hs
@@ -19,7 +19,7 @@ newtype Val = Val { val :: B.ByteString }
instance DataSize Val where
dataSize (Val b) = fromIntegral (B.length b)
-instance Serialize Val
+instance Binary Val
-- | JSON instances for Val, using base64 encoding when the value
-- is not utf-8 encoded, and otherwise using a more efficient encoding.