We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8479796 commit 67c4cb4Copy full SHA for 67c4cb4
Data/ByteString/Builder/RealFloat.hs
@@ -253,7 +253,7 @@ formatFloating fmt f = case fmt of
253
FStandard {..} -> specialsOr specials $ std precision
254
where
255
sci eE = BP.primBounded (R.toCharsScientific @a Proxy eE sign m e) ()
256
- std precision = printSign f `mappend` showStandard (toWord64 m) e' precision
+ std precision = printSign f <> showStandard (toWord64 m) e' precision
257
e' = R.toInt e + R.decimalLength m
258
R.FloatingDecimal m e = toD @a mantissa expo
259
(sign, mantissa, expo) = R.breakdown f
0 commit comments