Skip to content

Commit

Permalink
Merge pull request node4good#52 from alexjlockwood/patch-1
Browse files Browse the repository at this point in the history
Fix typo in docs.
  • Loading branch information
refack authored Jan 12, 2017
2 parents 4dfd520 + f5bc457 commit 91dded5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/walk-examples.js.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ The \_.walk module provides versions of most of the
some small differences that make them better suited for operating on trees. For
example, you can use `_.walk.filter` to get a list of all the strings in a tree:

_.walk.filter(_.walk.preorder, _.isString);
_.walk.filter(tree, _.walk.preorder, _.isString);

Like many other functions in _.walk, the argument to `filter` is a function
indicating in what order the nodes should be visited. Currently, only
Expand Down

0 comments on commit 91dded5

Please sign in to comment.