Fix typo in readme, issue #51

This commit is contained in:
Ryan 2013-05-03 15:55:43 -04:00
parent dff761f4e6
commit 9d8a81592f

View file

@ -43,7 +43,7 @@ wrench.copyDirSyncRecursive('directory_to_copy', 'location_where_copy_should_end
// Read lines in from a file until you hit the end // Read lines in from a file until you hit the end
var f = new wrench.LineReader('x.txt'); var f = new wrench.LineReader('x.txt');
while(f.hasNextLine()) { while(f.hasNextLine()) {
util.puts(x.getNextLine()); util.puts(f.getNextLine());
} }
// Note: You will need to close that above line reader at some point, otherwise // Note: You will need to close that above line reader at some point, otherwise