concrete functor and monad transformers
#59Typo in the documentation of catchE in Control.Monad.Trans.Except
In Control.Monad.Trans.Except, the documentation of catchE says:
-- * @'catchE' h ('lift' m) = 'lift' m@
-- * @'catchE' h ('throwE' e) = h e@
but it should be:
-- * @'catchE' ('lift' m) h = 'lift' m@
-- * @'catchE' ('throwE' e) h = h e@