From 9d8a81592fcec2f38738e3d16dbc832acf4ba2ff Mon Sep 17 00:00:00 2001 From: Ryan Date: Fri, 3 May 2013 15:55:43 -0400 Subject: [PATCH] Fix typo in readme, issue #51 --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 243c0da..af8ff89 100644 --- a/readme.md +++ b/readme.md @@ -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 var f = new wrench.LineReader('x.txt'); 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