diff --git a/docs/_entries/node/getnextnode.md b/docs/_entries/node/getnextnode.md index 06557a84..f71f6d99 100644 --- a/docs/_entries/node/getnextnode.md +++ b/docs/_entries/node/getnextnode.md @@ -5,8 +5,6 @@ name: node-functions-getnextnode Get the next node in the tree. This is the next sibling, if there is one. Or, if there is no next sibling, a node further down in the tree. -This is the next sibling, if there is one. Or, if there is no next sibling, a node further up in the tree. - - Returns a node or null. {% highlight js %} diff --git a/docs/_entries/node/getpreviousnode.md b/docs/_entries/node/getpreviousnode.md index 5fa25513..caf03a4e 100644 --- a/docs/_entries/node/getpreviousnode.md +++ b/docs/_entries/node/getpreviousnode.md @@ -5,6 +5,8 @@ name: node-functions-getpreviousnode Return the previous node in the tree. This is the previous sibling, if there is one. Or, if there is no previous sibling, a node further up in the tree. +- Returns a node or null. + {% highlight js %} var node = node.getPreviousNode(); {% endhighlight %}