Skip to content

Commit

Permalink
chore: fix typo in comment (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
HonkingGoose committed May 7, 2021
1 parent 0aa2ba1 commit a1d3de1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/get-client.test.js
Expand Up @@ -175,7 +175,7 @@ test('Use the same throttler for endpoints in the same rate limit group', async
// `issues.createComment` should be called `coreRate` ms after `repos.createRelease`
t.true(inRange(d - c, coreRate - 50, coreRate + 50));

// The first search should be called immediatly as it uses a different throttler
// The first search should be called immediately as it uses a different throttler
t.true(inRange(e - d, -50, 50));
// The second search should be called only after `searchRate` ms
t.true(inRange(f - e, searchRate - 50, searchRate + 50));
Expand Down

0 comments on commit a1d3de1

Please sign in to comment.