From ba0882a4d106432fa2448ea5dcef6d29b5fe76dc Mon Sep 17 00:00:00 2001 From: Patrick Steele-Idem Date: Wed, 24 Jul 2013 23:47:28 -0600 Subject: [PATCH] Update readme.md --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index ff90456..1db3ece 100644 --- a/readme.md +++ b/readme.md @@ -72,9 +72,9 @@ wrench.copyDirSyncRecursive('directory_to_copy', 'location_where_copy_should_end exclude: regexpOrFunction // An include filter (either a regexp or a function) }); -*NOTE:* If a RegExp is provided then then it will be matched against the filename. If a function is - provided then the signature should be the following: - `function(filename, dir) { return result; }` +// Note: If a RegExp is provided then then it will be matched against the filename. If a function is +// provided then the signature should be the following: +// function(filename, dir) { return result; } // Read lines in from a file until you hit the end var f = new wrench.LineReader('x.txt');