Fix error message for missing global.Promise

This commit is contained in:
Miroslav Bajtoš 2016-08-16 14:38:01 +02:00
parent df4a3643eb
commit f7cfe25b60
1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ function createPromiseCallback() {
function throwPromiseNotDefined() { function throwPromiseNotDefined() {
throw new Error( throw new Error(
'Your Node runtime does support ES6 Promises. ' + 'Your Node runtime does not support ES6 Promises. ' +
'Set "global.Promise" to your preferred implementation of promises.'); 'Set "global.Promise" to your preferred implementation of promises.');
} }