Skip to content

Commit

Permalink
docs formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
luccastera committed Dec 30, 2011
1 parent be04df6 commit 94a1c80
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions README.md
Expand Up @@ -46,38 +46,38 @@ User.findOne({username: 'michael'}, function(err, michael) {

### Static methods

__Model.rebuildTree(rootNode, leftValueOfRootNode, callback)__
* Model.rebuildTree(rootNode, leftValueOfRootNode, callback)

#### Instance methods that return values:

__isLeaf()__
* isLeaf()

__isChild()__
* isChild()

__isDescendantOf(otherNode)__
* isDescendantOf(otherNode)

__isAncestorOf(otherNode)__
* isAncestorOf(otherNode)


#### Instance methods that use a callback function:

__selfAndAncestors(callback)__
* selfAndAncestors(callback)

__ancestors(callback)__
* ancestors(callback)

__selfAndChildren(callback)__
* selfAndChildren(callback)

__children(callback)__
* children(callback)

__selfAndDescendants(callback)__
* selfAndDescendants(callback)

__descendants(callback)__
* descendants(callback)

__level(callback)__
* level(callback)

__selfAndSiblings(callback)__
* selfAndSiblings(callback)

__siblings(callback)__
* siblings(callback)


### Related Links/Resources
Expand Down

0 comments on commit 94a1c80

Please sign in to comment.