From 475495c903851e03dec6f92444900447cc3da3fd Mon Sep 17 00:00:00 2001 From: shelarcy Date: Sat, 29 Nov 2008 02:46:39 +0000 Subject: [PATCH] Fix typo (or out of date reference) in throwTo documentation. --- GHC/Conc.lhs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GHC/Conc.lhs b/GHC/Conc.lhs index 5379292..78785ed 100644 --- a/GHC/Conc.lhs +++ b/GHC/Conc.lhs @@ -301,8 +301,8 @@ the paper \"Asynchronous exceptions in Haskell\" (). In the paper, 'throwTo' is non-blocking; but the library implementation adopts a more synchronous design in which 'throwTo' does not return until the exception -is received by the target thread. The trade-off is discussed in Section 8 of the paper. -Like any blocking operation, 'throwTo' is therefore interruptible (see Section 4.3 of +is received by the target thread. The trade-off is discussed in Section 9 of the paper. +Like any blocking operation, 'throwTo' is therefore interruptible (see Section 5.3 of the paper). There is currently no guarantee that the exception delivered by 'throwTo' will be -- 1.7.10.4