[project @ 2003-03-08 19:02:39 by panne]
[ghc-base.git] / Control / Monad / State.hs
index 878b83f..2e77d04 100644 (file)
@@ -3,20 +3,19 @@
 -- Module      :  Control.Monad.State
 -- 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
--- Portability :  non-portable ( requires mulit-parameter type classes,
---                              requires functional dependencies )
+-- Portability :  non-portable ( mulit-param classes, functional dependencies )
 --
 -- State monads.
 --
 --       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.}
+--       /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.State (
@@ -24,13 +23,11 @@ module Control.Monad.State (
        modify,
        gets,
        State(..),
-       runState,
        evalState,
        execState,
        mapState,
        withState,
        StateT(..),
-       runStateT,
        evalStateT,
        execStateT,
        mapStateT,