Skip to content

Commit

Permalink
Merge branch 'rexxars-fix-error-typo'
Browse files Browse the repository at this point in the history
  • Loading branch information
natesilva committed Dec 31, 2020
2 parents 2f31432 + 5653b36 commit 3eae81c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rateLimit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function pRateLimit(
if (quotaManager.maxDelay) {
timerId = setTimeout(() => {
timerId = null;
reject(new RateLimitTimeoutError('queue maxDelay timemout exceeded'));
reject(new RateLimitTimeoutError('queue maxDelay timeout exceeded'));
next();
}, quotaManager.maxDelay);
}
Expand Down

0 comments on commit 3eae81c

Please sign in to comment.