[project @ 2004-02-05 11:58:21 by malcolm]
[ghc-base.git] / Control / Monad / Cont.hs
index f9855b3..26af5ed 100644 (file)
@@ -2,13 +2,11 @@
 -- |
 -- Module      :  Control.Monad.Cont
 -- Copyright   :  (c) The University of Glasgow 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
---
--- $Id: Cont.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
+-- Portability :  non-portable (multi-parameter type classes)
 --
 -- Continuation monads.
 --
 module Control.Monad.Cont (
        MonadCont(..),
        Cont(..),
-       runCont,
        mapCont,
        withCont,
        ContT(..),
-       runContT,
        mapContT,
        withContT,
        module Control.Monad,