Skip to content

Commit 67c4cb4

Browse files
removed mappend
1 parent 8479796 commit 67c4cb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Data/ByteString/Builder/RealFloat.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ formatFloating fmt f = case fmt of
253253
FStandard {..} -> specialsOr specials $ std precision
254254
where
255255
sci eE = BP.primBounded (R.toCharsScientific @a Proxy eE sign m e) ()
256-
std precision = printSign f `mappend` showStandard (toWord64 m) e' precision
256+
std precision = printSign f <> showStandard (toWord64 m) e' precision
257257
e' = R.toInt e + R.decimalLength m
258258
R.FloatingDecimal m e = toD @a mantissa expo
259259
(sign, mantissa, expo) = R.breakdown f

0 commit comments

Comments
 (0)