Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rafiramadhana committed Oct 27, 2023
1 parent 4f83eaa commit a1f7a0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -405,10 +405,10 @@ e.POST("/path").
Expect().
Status(http.StatusOK)

// custom retry function
// custom retry func
e.POST("/path").
WithMaxRetries(5).
WithCustomRetryFunc(func(resp *http.Response, err error) bool {
WithRetryFunc(func(resp *http.Response, err error) bool {
return true
}).
Expect().
Expand Down

0 comments on commit a1f7a0c

Please sign in to comment.