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:
authorTamas Fitos <tamas.fitos@gmail.com>2012-12-17 20:11:11 +0400
committerTamas Fitos <tamas.fitos@gmail.com>2012-12-17 20:11:11 +0400
commit4cd46088b981b49e35933f2da0ec96877dd690c3 (patch)
tree784b69f63ffc00a57ea7376a0c5054ebe126f6cb /README.md
parent9818ba773c3d5765c6753d9f71eb10e095641fc1 (diff)
fixed typo in one of the examples in 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 d2b217b..f5316c6 100644
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ function readSomethingFromFileSystem(cb) {
// But no scoped variables
var path = "/somewhere/on/the/disk";
- console.log("Reading from file system ..."):
+ console.log("Reading from file system ...");
fs.readFile(path, "utf8", cb);
}