[project @ 2002-10-03 13:41:35 by panne]
[ghc-base.git] / Control / Monad / Identity.hs
index e86da0b..5a6f5ad 100644 (file)
@@ -3,7 +3,7 @@
 -- Module      :  Control.Monad.Identity
 -- Copyright   :  (c) Andy Gill 2001,
 --               (c) Oregon Graduate Institute of Science and Technology, 2001
--- License     :  BSD-style (see the file libraries/core/LICENSE)
+-- License     :  BSD-style (see the file libraries/base/LICENSE)
 -- 
 -- Maintainer  :  libraries@haskell.org
 -- Stability   :  experimental
 --
 -- The Identity monad.
 --
---       Inspired by the paper:
---       \em{Functional Programming with Overloading and
---           Higher-Order Polymorphism},
---         \A[HREF="http://www.cse.ogi.edu/~mpj"]{Mark P Jones},
---               Advanced School of Functional Programming, 1995.}
+--       Inspired by the paper
+--       /Functional Programming with Overloading and
+--           Higher-Order Polymorphism/, 
+--         Mark P Jones (<http://www.cse.ogi.edu/~mpj>)
+--               Advanced School of Functional Programming, 1995.
 --
 -----------------------------------------------------------------------------
 
 module Control.Monad.Identity (
        Identity(..),
-       runIdentity,
        module Control.Monad,
        module Control.Monad.Fix,
    ) where