summaryrefslogtreecommitdiff
path: root/src/runtime/haskell/Data/Binary/Builder.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/haskell/Data/Binary/Builder.hs')
-rw-r--r--src/runtime/haskell/Data/Binary/Builder.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/haskell/Data/Binary/Builder.hs b/src/runtime/haskell/Data/Binary/Builder.hs
index 8dc46f816..e22fa4a4c 100644
--- a/src/runtime/haskell/Data/Binary/Builder.hs
+++ b/src/runtime/haskell/Data/Binary/Builder.hs
@@ -114,7 +114,7 @@ instance Semigroup Builder where
instance Monoid Builder where
mempty = empty
{-# INLINE mempty #-}
- mappend = append
+ mappend = (<>)
{-# INLINE mappend #-}
------------------------------------------------------------------------