Rewrite of the IO library, including Unicode support
[ghc-base.git] / System / Mem / StableName.hs
index f0919f9..beeb514 100644 (file)
@@ -38,7 +38,7 @@ import Hugs.Stable
 #endif
 
 #ifdef __GLASGOW_HASKELL__
-import GHC.IOBase      ( IO(..) )
+import GHC.IO           ( IO(..) )
 import GHC.Base                ( Int(..), StableName#, makeStableName#
                        , eqStableName#, stableNameToInt# )
 
@@ -55,7 +55,9 @@ import GHC.Base               ( Int(..), StableName#, makeStableName#
    the same object.
 
   The reverse is not necessarily true: if two stable names are not
-  equal, then the objects they name may still be equal.
+  equal, then the objects they name may still be equal.  Note in particular
+  that `mkStableName` may return a different `StableName` after an
+  object is evaluated.
 
   Stable Names are similar to Stable Pointers ("Foreign.StablePtr"),
   but differ in the following ways: