Merge pull request #16 from davidmurdoch/patch-1

Fix typo in README.MD
This commit is contained in:
AJ ONeal 2013-03-05 22:30:44 -08:00
commit 42cdccff35
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ The Synchronous version still uses callbacks, so it is safe to use with other As
// walker = walk.walkSync("/tmp", options);
walker.on("names", function (root, nodeNamesArray) {
nodeNames.sort(function (a, b) {
nodeNamesArray.sort(function (a, b) {
if (a > b) return 1;
if (a < b) return -1;
return 0;