summaryrefslogtreecommitdiff
path: root/libraries/base/Control/Monad/Instances.hs
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2013-02-16 13:47:41 +0000
committerIan Lynagh <ian@well-typed.com>2013-02-16 13:47:41 +0000
commit309c3a340f06e23c87997af127eed17cee9b14bf (patch)
tree236e131f895a0875b567aa1fdf1e8bff06ed2af0 /libraries/base/Control/Monad/Instances.hs
parenta34f67702f45df3ea78bd0d902134020c5cfef81 (diff)
downloadhaskell-309c3a340f06e23c87997af127eed17cee9b14bf.tar.gz
Give Control.Monad.Instances a proper DEPRECATED pragma
Diffstat (limited to 'libraries/base/Control/Monad/Instances.hs')
-rw-r--r--libraries/base/Control/Monad/Instances.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/libraries/base/Control/Monad/Instances.hs b/libraries/base/Control/Monad/Instances.hs
index 353f1c4a10..687d33c4b8 100644
--- a/libraries/base/Control/Monad/Instances.hs
+++ b/libraries/base/Control/Monad/Instances.hs
@@ -15,6 +15,7 @@
-- 'Functor' and 'Monad' instances for @(->) r@ and
-- 'Functor' instances for @(,) a@ and @'Either' a@.
-module Control.Monad.Instances (Functor(..),Monad(..)) where
--- module DEPRECATED -- deprecated in 7.6
+module Control.Monad.Instances {-# DEPRECATED "This module now contains no instances and will be removed in the future" #-} -- deprecated in 7.8
+ (Functor(..),Monad(..)) where
+
import Prelude