From 50c4deb799558deff518cecf47ff5edf53f25b0e Mon Sep 17 00:00:00 2001 From: Hakan Ensari Date: Thu, 19 Dec 2024 03:37:34 +0100 Subject: [PATCH] Correct typo in comments for `retriable` method (#794) --- lib/http/chainable.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/http/chainable.rb b/lib/http/chainable.rb index 55db648d..4c3c0912 100644 --- a/lib/http/chainable.rb +++ b/lib/http/chainable.rb @@ -258,13 +258,13 @@ def use(*features) # HTTP.retriable.get(url) # # # Retry max 3 times with randomly growing delay between retries - # HTTP.retriable(times: 3).get(url) + # HTTP.retriable(tries: 3).get(url) # # # Retry max 3 times with 1 sec delay between retries - # HTTP.retriable(times: 3, delay: proc { 1 }).get(url) + # HTTP.retriable(tries: 3, delay: proc { 1 }).get(url) # # # Retry max 3 times with geometrically progressed delay between retries - # HTTP.retriable(times: 3, delay: proc { |i| 1 + i*i }).get(url) + # HTTP.retriable(tries: 3, delay: proc { |i| 1 + i*i }).get(url) # # @param (see Performer#initialize) def retriable(**options)