From dc372329214c1e8ef32f1a20173c3e8cc6dc0572 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Thu, 1 Jul 2010 15:42:03 +0000 Subject: [PATCH] remove docs from Monad that belonged on the instance for MonadPlus IO --- Control/Monad.hs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Control/Monad.hs b/Control/Monad.hs index 0650e7a..5b46f8f 100644 --- a/Control/Monad.hs +++ b/Control/Monad.hs @@ -127,8 +127,6 @@ class Monad m => MonadPlus m where -- > mzero >>= f = mzero -- > v >> mzero = mzero -- - -- (but the instance for 'System.IO.IO' defined in Control.Monad.Error - -- in the mtl package does not satisfy the second one). mzero :: m a -- | an associative operation mplus :: m a -> m a -> m a -- 1.7.10.4