summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2021-06-03 01:56:46 +0900
committerGitHub <noreply@github.com>2021-06-02 09:56:46 -0700
commit200cc0088e49e1e1a27cddee0428288d173f48a4 (patch)
treed67b3b93ddf864282a936b9f999fe518229cd89e
parentb7361922b1fd231cefa13ff80bfd359f482b5e6e (diff)
downloadasync-200cc0088e49e1e1a27cddee0428288d173f48a4.tar.gz
chore: Fix typo in detect.js (#1749)
mulitple -> multiple
-rw-r--r--test/detect.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/detect.js b/test/detect.js
index 4663e29..7d9e687 100644
--- a/test/detect.js
+++ b/test/detect.js
@@ -24,7 +24,7 @@ describe("detect", () => {
}, 25);
});
- it('detect - mulitple matches', function(done){
+ it('detect - multiple matches', function(done){
var call_order = [];
async.detect([3,2,2,1,2], detectIteratee.bind(this, call_order), (err, result) => {
call_order.push('callback');