From 5689274eb8ef863e8fc268c171cc141ab08cbc26 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 5 Jan 2015 23:20:57 -0700 Subject: [PATCH] console.warning -> console.warn --- forEachAsync.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forEachAsync.js b/forEachAsync.js index ff99c24..a309285 100644 --- a/forEachAsync.js +++ b/forEachAsync.js @@ -74,7 +74,7 @@ try { exp.forEachAsync = create(require('rsvp')); } 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' ); }