[project @ 2004-02-05 11:58:21 by malcolm]
[ghc-base.git] / Control / Monad / Reader.hs
index 758a19d..51415d3 100644 (file)
@@ -3,18 +3,18 @@
 -- Module      :  Control.Monad.Reader
 -- 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 ( mulit-param classes, functional dependencies )
+-- Portability :  non-portable (multi-param classes, functional dependencies)
 --
 -- Declaration of the Monoid class,and instances for list and functions
 --
 --       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.
 -----------------------------------------------------------------------------
 
@@ -22,11 +22,9 @@ module Control.Monad.Reader (
        MonadReader(..),
        asks,
        Reader(..),
-       runReader,
        mapReader,
        withReader,
        ReaderT(..),
-       runReaderT,
        mapReaderT,
        withReaderT,
        module Control.Monad,