From 674a02987c32974016ff418f933b7bb75bdb27bb Mon Sep 17 00:00:00 2001 From: Luca Bezerra Date: Mon, 25 Nov 2024 15:56:58 -0500 Subject: [PATCH] docs: Fix README example description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c666cac..8f23414 100644 --- a/README.md +++ b/README.md @@ -291,7 +291,7 @@ const result = await retry(async function() { ### Retry with exponential backoff, jitter, min delay, and max delay ```js -// Try the given operation 3 times. The initial delay will be 0 +// Try the given operation up to 5 times. The initial delay will be 0 // and subsequent delays will be in the following range: // - 100 to 200 // - 100 to 400