Skip to content

Commit

Permalink
Merge pull request #1 from tarzak/patch-1
Browse files Browse the repository at this point in the history
docs(readme) fs.createWritesStream-> fs.createWriteStream
  • Loading branch information
coderaiser committed Jul 17, 2015
2 parents fa106e1 + f19639f commit 007d250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var pipe = require('pipe-io'),
NAME = 'README.md',
NAME2 = 'README2.md',
readStream = fs.createReadStream(NAME),
writeStream = fs.createWritesStream(NAME2);
writeStream = fs.createWriteStream(NAME2);

pipe([readStream, writeStream], function(error) {
console.log(error || 'done');
Expand Down

0 comments on commit 007d250

Please sign in to comment.