From 17de35d4d566bd83a6d15ab72dec3d0fe1dfe1dd Mon Sep 17 00:00:00 2001 From: "Malcolm.Wallace@cs.york.ac.uk" Date: Tue, 8 May 2007 10:11:24 +0000 Subject: [PATCH] further clarify the docs for 'evaluate' --- GHC/Exception.lhs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GHC/Exception.lhs b/GHC/Exception.lhs index fd28004..5cee08f 100644 --- a/GHC/Exception.lhs +++ b/GHC/Exception.lhs @@ -102,8 +102,8 @@ unblock (IO io) = IO $ unblockAsyncExceptions# io \end{code} \begin{code} --- | Forces its argument to be evaluated, and returns the result in --- the 'IO' monad. It can be used to order evaluation with respect to +-- | Forces its argument to be evaluated when the resultant 'IO' action +-- is executed. It can be used to order evaluation with respect to -- other 'IO' operations; its semantics are given by -- -- > evaluate x `seq` y ==> y -- 1.7.10.4