From 610cc0d6620cefe307410bcc39fc009a2ed3d0b3 Mon Sep 17 00:00:00 2001 From: Ozgun Ataman Date: Wed, 18 Mar 2015 18:28:24 -0400 Subject: [PATCH] Doc clarification --- src/Control/Retry.hs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Control/Retry.hs b/src/Control/Retry.hs index 0637332..1fbacb0 100644 --- a/src/Control/Retry.hs +++ b/src/Control/Retry.hs @@ -266,7 +266,9 @@ recovering -- ^ Just use 'def' for default settings -> [(Int -> Handler m Bool)] -- ^ Should a given exception be retried? Action will be - -- retried if this returns True. + -- retried if this returns True *and* the policy allows it. + -- This action will be consulted first even if the policy + -- later blocks it. -> m a -- ^ Action to perform -> m a