From fa1388019c8a11a4df21de6c5f18df07665379d2 Mon Sep 17 00:00:00 2001 From: mattcollier Date: Wed, 6 Jan 2016 19:55:42 -0500 Subject: [PATCH] Use `nonexistent` instead of `inexistant` in error message. Inexistant is not a commonly used English word. --- lib/async.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/async.js b/lib/async.js index 839a66a0c..3b212cca8 100644 --- a/lib/async.js +++ b/lib/async.js @@ -580,7 +580,7 @@ var dep; while (len--) { if (!(dep = tasks[requires[len]])) { - throw new Error('Has inexistant dependency in ' + requires.join(', ')); + throw new Error('Has nonexistent dependency in ' + requires.join(', ')); } if (_isArray(dep) && _indexOf(dep, k) >= 0) { throw new Error('Has cyclic dependencies');