From 26235420a90c8161319472314a8627b9f00be21a Mon Sep 17 00:00:00 2001 From: Aleksey Podskrebyshev Date: Tue, 13 Jan 2015 22:52:15 +0300 Subject: [PATCH] Fix doc --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e5ba2ea..fc2ea1d 100644 --- a/README.md +++ b/README.md @@ -212,7 +212,7 @@ You will be able to change direction in the future versions of the library. var result = test.some(callback); ``` -- `callback**: Function to test each node of the tree. Node passes the test if this function returns `true` value (or value that can be interpreted as `true`). Otherwise node failes, and traversing is interrupted. It has following arguments: +- `callback`: Function to test each node of the tree. Node passes the test if this function returns `true` value (or value that can be interpreted as `true`). Otherwise node failes, and traversing is interrupted. It has following arguments: - `value`: Value of the current node. - `key`: Key of the current node. - `tree`: Tree is being processed.