From 0f1eb43f592311b400d09520aede4f039a4cf946 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Mon, 20 Jan 2020 11:35:49 +0000 Subject: [PATCH] Clarify partial lost of method arguments Fixes #190 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b4e59e5..6c96108 100644 --- a/README.md +++ b/README.md @@ -460,7 +460,7 @@ the retry is exhausted. Methods should be declared in the same class as the `@Re and marked `@Recover`. The return type must match the `@Retryable` method. The arguments for the recovery method can optionally include the exception that was thrown and (optionally) the arguments passed to the original retryable method (or a partial list of - them as long as none are omitted). The following example shows how to do so: + them as long as none are omitted up to the last one needed). The following example shows how to do so: ```java @Service