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-12-12 15:07:52 +0400
committerJohannes <mail@johannesewald.de>2012-12-12 15:07:52 +0400
commit9818ba773c3d5765c6753d9f71eb10e095641fc1 (patch)
treede11f080f74f5e6f1564f4e9217079ed5b91ce7f /README.md
parent29e0be66114899702d1c5aff972df042d05634e7 (diff)
Update README.md
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);