Skip to content

Commit

Permalink
Merge pull request #1002 from mattcollier/patch-1
Browse files Browse the repository at this point in the history
Use `nonexistent` instead of `inexistant` in error message.
  • Loading branch information
aearly committed Jan 7, 2016
2 parents 11f5d1f + fa13880 commit fc57bd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/async.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit fc57bd0

Please sign in to comment.