From 9ed2ee7929dbe56e7f2ee54d4944508b820802b7 Mon Sep 17 00:00:00 2001 From: Jeff Epstein Date: Fri, 9 Dec 2011 12:11:42 +0800 Subject: [PATCH] Fixed obsolete comments --- Remote/Process.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Remote/Process.hs b/Remote/Process.hs index d1ee5cb..23e9adc 100644 --- a/Remote/Process.hs +++ b/Remote/Process.hs @@ -2081,10 +2081,10 @@ instance Binary GlCommand where return $ GlUnmonitor a b c -- | The different kinds of monitoring available between processes. -data MonitorAction = MaMonitor -- ^ MaMonitor means that the monitor process will be sent a ProcessDownException message when the monitee terminates for any reason. - | MaLink -- ^ MaLink means that the monitor process will receive an asynchronous exception of type ProcessDownException when the monitee terminates for any reason +data MonitorAction = MaMonitor -- ^ MaMonitor means that the monitor process will be sent a ProcessMonitorException message when the monitee terminates for any reason. + | MaLink -- ^ MaLink means that the monitor process will receive an asynchronous exception of type ProcessMonitorException when the monitee terminates for any reason - | MaLinkError -- ^ MaLinkError means that the monitor process will receive an asynchronous exception of type ProcessDownException when the monitee terminates abnormally + | MaLinkError -- ^ MaLinkError means that the monitor process will receive an asynchronous exception of type ProcessMonitorException when the monitee terminates abnormally deriving (Typeable,Show,Ord,Eq) instance Binary MonitorAction where