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 <johannes.ewald@roomieplanet.de>2012-06-23 18:15:24 +0400
committerJohannes <johannes.ewald@roomieplanet.de>2012-06-23 18:15:24 +0400
commitf8333d32b4f4135e8a0ce7553cda6a6f3c32e099 (patch)
tree7c555cdd438879ec106f6199f1bfe55fd369a2aa
parenta521ef624f7f251f4e8146d7e9cb46adaf0b0253 (diff)
updated docs
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index ac2069b..f3c059b 100644
--- a/README.md
+++ b/README.md
@@ -27,8 +27,8 @@ rewire is tested with node 0.6.x - 0.7.x. I recommend to run the unit tests via
**Use with [browserify](https://github.com/substack/node-browserify):**<br />
```javascript
-var b = require("browserify")({debug: true}); // debug=true splits the source in seperate files in chrome's developer
- tools
+// debug=true splits the source in seperate files in chrome's developer tools
+var b = require("browserify")({debug: true});
b.use(require("rewire").browserify);
```