summaryrefslogtreecommitdiff
path: root/libraries/base/Numeric.hs
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/base/Numeric.hs')
-rw-r--r--libraries/base/Numeric.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/base/Numeric.hs b/libraries/base/Numeric.hs
index 7cba671309..4e24bfe7a8 100644
--- a/libraries/base/Numeric.hs
+++ b/libraries/base/Numeric.hs
@@ -187,7 +187,7 @@ showGFloat d x = showString (formatRealFloat FFGeneric d x)
-- This behaves as 'showFFloat', except that a decimal point
-- is always guaranteed, even if not needed.
--
--- /Since: 4.7.0.0/
+-- @since 4.7.0.0
showFFloatAlt :: (RealFloat a) => Maybe Int -> a -> ShowS
-- | Show a signed 'RealFloat' value
@@ -197,7 +197,7 @@ showFFloatAlt :: (RealFloat a) => Maybe Int -> a -> ShowS
-- This behaves as 'showFFloat', except that a decimal point
-- is always guaranteed, even if not needed.
--
--- /Since: 4.7.0.0/
+-- @since 4.7.0.0
showGFloatAlt :: (RealFloat a) => Maybe Int -> a -> ShowS
showFFloatAlt d x = showString (formatRealFloatAlt FFFixed d True x)