Skip to content

Commit

Permalink
Correct typo in comments for retriable method
Browse files Browse the repository at this point in the history
  • Loading branch information
hakanensari committed Dec 13, 2024
1 parent db6863a commit a2d2d1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/http/chainable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a2d2d1e

Please sign in to comment.