Skip to content

Commit

Permalink
clarify retry vs retryable in docs. closes #1450
Browse files Browse the repository at this point in the history
  • Loading branch information
aearly committed Jul 17, 2017
1 parent 4c15dd7 commit 0040c54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/retry.js
Expand Up @@ -76,8 +76,8 @@ import wrapAsync from './internal/wrapAsync';
* // do something with the result
* });
*
* // It can also be embedded within other control flow functions to retry
* // individual methods that are not as reliable, like this:
* // to retry individual methods that are not as reliable within other
* // control flow functions, use the `retryable` wrapper:
* async.auto({
* users: api.getUsers.bind(api),
* payments: async.retryable(3, api.getPayments.bind(api))
Expand Down

0 comments on commit 0040c54

Please sign in to comment.