console.warning -> console.warn
This commit is contained in:
parent
676159ba62
commit
5689274eb8
|
@ -74,7 +74,7 @@
|
||||||
try {
|
try {
|
||||||
exp.forEachAsync = create(require('rsvp'));
|
exp.forEachAsync = create(require('rsvp'));
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
console.warning('forEachAsync needs requires a promise implementation and your environment does not provide one.'
|
console.warn('forEachAsync needs requires a promise implementation and your environment does not provide one.'
|
||||||
+ '\nYou may provide your own by calling forEachAsync.create(Promise) with a PromiseA+ implementation'
|
+ '\nYou may provide your own by calling forEachAsync.create(Promise) with a PromiseA+ implementation'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue