[project @ 2003-03-08 19:02:39 by panne]
[ghc-base.git] / Control / Monad / State.hs
index 9f67f6d..2e77d04 100644 (file)
@@ -14,7 +14,7 @@
 --       Inspired by the paper
 --       /Functional Programming with Overloading and
 --           Higher-Order Polymorphism/, 
---         Mark P Jones (<http://www.cse.ogi.edu/~mpj>)
+--         Mark P Jones (<http://www.cse.ogi.edu/~mpj/>)
 --               Advanced School of Functional Programming, 1995.
 -----------------------------------------------------------------------------
 
@@ -23,13 +23,11 @@ module Control.Monad.State (
        modify,
        gets,
        State(..),
-       runState,
        evalState,
        execState,
        mapState,
        withState,
        StateT(..),
-       runStateT,
        evalStateT,
        execStateT,
        mapStateT,