mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 14:55:16 +00:00
fix misspell
This commit is contained in:
parent
fe1a25d735
commit
3bbf15bb7e
|
@ -13,7 +13,7 @@ const (
|
||||||
|
|
||||||
type RetryPredicator func(e error) bool
|
type RetryPredicator func(e error) bool
|
||||||
|
|
||||||
// Retry retrys the passed functin for "attempts" times, if passed function return error. Setting attemps to zero means keep retrying.
|
// Retry retrys the passed function for "attempts" times, if passed function return error. Setting attempts to zero means keep retrying.
|
||||||
func Retry(ctx context.Context, attempts int, duration time.Duration, fnToRetry func() error, errHandler func(error), predicators ...RetryPredicator) (err error) {
|
func Retry(ctx context.Context, attempts int, duration time.Duration, fnToRetry func() error, errHandler func(error), predicators ...RetryPredicator) (err error) {
|
||||||
infinite := false
|
infinite := false
|
||||||
if attempts == InfiniteRetry {
|
if attempts == InfiniteRetry {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user