Skip to content

Commit

Permalink
Use nonexistent instead of inexistant in error message.
Browse files Browse the repository at this point in the history
Inexistant is not a commonly used English word.
  • Loading branch information
mattcollier committed Jan 7, 2016
1 parent 11f5d1f commit fa13880
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 fa13880

Please sign in to comment.