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:
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 801bbc1..d2b217b 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ var fs = require("fs"),
function readSomethingFromFileSystem(cb) {
// But no scoped variables
- var path;
+ var path = "/somewhere/on/the/disk";
console.log("Reading from file system ..."):
fs.readFile(path, "utf8", cb);