diff options
author | Reid Barton <rwbarton@gmail.com> | 2016-10-16 13:40:11 -0400 |
---|---|---|
committer | Reid Barton <rwbarton@gmail.com> | 2016-10-16 13:40:11 -0400 |
commit | afdde48baf98e552b860cf1aec093d71ccad1363 (patch) | |
tree | 0d1edf675a7d6b6c1fe0cfdb7df557a2da3e7764 /libraries/base | |
parent | 512541bc6b1b81e1bda503754d02cf4dc4248dc4 (diff) | |
download | haskell-afdde48baf98e552b860cf1aec093d71ccad1363.tar.gz |
Correct name of makeStableName in haddock
Diffstat (limited to 'libraries/base')
-rw-r--r-- | libraries/base/System/Mem/StableName.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/System/Mem/StableName.hs b/libraries/base/System/Mem/StableName.hs index f2f2c2b911..dcd527307b 100644 --- a/libraries/base/System/Mem/StableName.hs +++ b/libraries/base/System/Mem/StableName.hs @@ -53,7 +53,7 @@ import GHC.Base ( Int(..), StableName#, makeStableName# The reverse is not necessarily true: if two stable names are not equal, then the objects they name may still be equal. Note in particular - that `mkStableName` may return a different `StableName` after an + that `makeStableName` may return a different `StableName` after an object is evaluated. Stable Names are similar to Stable Pointers ("Foreign.StablePtr"), |