diff options
author | Alec Theriault <alec.theriault@gmail.com> | 2018-08-21 16:05:16 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-08-21 18:56:11 -0400 |
commit | ddffa0cd8da568c97011007fc6470c61cd4447e5 (patch) | |
tree | 99729e70cf2d04acd2377158b47dfe378fcc8e2a /libraries/base/GHC/Float.hs | |
parent | 14817621aae2d45f8272a36b171b9ccce8763bba (diff) | |
download | haskell-ddffa0cd8da568c97011007fc6470c61cd4447e5.tar.gz |
Fix ambiguous/out-of-scope Haddock identifiers
This drastically cuts down on the number of Haddock warnings when making
docs for `base`. Plus this means more actual links end up in the docs!
Also fixed other small mostly markup issues in the documentation along
the way.
This is a docs-only change.
Reviewers: hvr, bgamari, thomie
Reviewed By: thomie
Subscribers: thomie, rwbarton, carter
Differential Revision: https://phabricator.haskell.org/D5055
Diffstat (limited to 'libraries/base/GHC/Float.hs')
-rw-r--r-- | libraries/base/GHC/Float.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/GHC/Float.hs b/libraries/base/GHC/Float.hs index 26a5987ee6..7def79e3bb 100644 --- a/libraries/base/GHC/Float.hs +++ b/libraries/base/GHC/Float.hs @@ -166,7 +166,7 @@ class (RealFrac a, Floating a) => RealFloat a where decodeFloat :: a -> (Integer,Int) -- | 'encodeFloat' performs the inverse of 'decodeFloat' in the -- sense that for finite @x@ with the exception of @-0.0@, - -- @'uncurry' 'encodeFloat' ('decodeFloat' x) = x@. + -- @'Prelude.uncurry' 'encodeFloat' ('decodeFloat' x) = x@. -- @'encodeFloat' m n@ is one of the two closest representable -- floating-point numbers to @m*b^^n@ (or @±Infinity@ if overflow -- occurs); usually the closer, but if @m@ contains too many bits, |