[project @ 2002-10-03 13:56:12 by panne]
[ghc-base.git] / Control / Monad / RWS.hs
index 7f7f98b..2fdc309 100644 (file)
@@ -3,7 +3,7 @@
 -- Module      :  Control.Monad.RWS
 -- 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
 
 module Control.Monad.RWS (
        RWS(..),
-       runRWS,
        evalRWS,
        execRWS,
        mapRWS,
        withRWS,
        RWST(..),
-       runRWST,
        evalRWST,
        execRWST,
        mapRWST,
        withRWST,
-       module Control.Monad,
-       module Control.Monad.Fix,
-       module Control.Monad.Trans,
        module Control.Monad.Reader,
        module Control.Monad.Writer,
        module Control.Monad.State,