Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes <mail@johannesewald.de>2012-07-17 05:01:53 +0400
committerJohannes <mail@johannesewald.de>2012-07-17 05:01:53 +0400
commit3da0b89375d28c6115d3ff6f0b2cec81a3ce4f45 (patch)
treec91effe839eff60eae8f4aaecacce51c8eae83b7
parent0bb70adf091ce5ccf8c81f28cc72a229ac15eba1 (diff)
- Fixed error in comment
-rw-r--r--lib/getImportGlobalsSrc.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/getImportGlobalsSrc.js b/lib/getImportGlobalsSrc.js
index 0e573f2..8ed8545 100644
--- a/lib/getImportGlobalsSrc.js
+++ b/lib/getImportGlobalsSrc.js
@@ -3,7 +3,7 @@
* override globals without changing the global object itself.
*
* Returns something like
- * "var console = console; var process = process; ..."
+ * "var console = global.console; var process = global.process; ..."
*
* @return {String}
*/