From 6d3d2ac9a579cfd1ef6c96bc893404a1e400dd27 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Thu, 3 Jun 2021 01:01:16 +0900 Subject: [PATCH] chore: Fix typo in detect.js mulitple -> multiple --- test/detect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/detect.js b/test/detect.js index 4663e2930..7d9e687de 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');