Skip to content

Commit

Permalink
backoff/tries.go: fix typo: missing 'o' : anther --> another
Browse files Browse the repository at this point in the history
WithMaxTries creates a wrapper around another BackOff, which will
return Stop if NextBackOff() has been called too many times since
the last time Reset() was called

Note: Implementation is not thread-safe.

Signed-off-by: Michael Ira Krufky <mkrufky@gmail.com>
  • Loading branch information
mkrufky committed Jul 11, 2017
1 parent 8736fff commit 314714a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tries.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package backoff
import "time"

/*
WithMaxTries creates a wrapper around anther BackOff, which will
WithMaxTries creates a wrapper around another BackOff, which will
return Stop if NextBackOff() has been called too many times since
the last time Reset() was called
Expand Down

0 comments on commit 314714a

Please sign in to comment.