Minor documentation fix, DescendGreaterThan starts with the last item in the tree and decends to the least item greater than the pivot
diff --git a/btree.go b/btree.go index 6ff062f..b83acdb 100644 --- a/btree.go +++ b/btree.go
@@ -796,7 +796,7 @@ } // DescendGreaterThan calls the iterator for every value in the tree within -// the range (pivot, last], until iterator returns false. +// the range [last, pivot), until iterator returns false. func (t *BTree) DescendGreaterThan(pivot Item, iterator ItemIterator) { if t.root == nil { return