aboutsummaryrefslogtreecommitdiff
path: root/cursor.go
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2014-01-30 14:05:26 -0800
committerBen Johnson <benbjohnson@yahoo.com>2014-01-30 14:05:26 -0800
commitd087fb44197a6e3dcb06ca2b831575c1fc239bcd (patch)
tree15503ce52ea1346876df77543b24e6c23594cb03 /cursor.go
parentBadges. (diff)
parentgofmt (diff)
downloaddedo-d087fb44197a6e3dcb06ca2b831575c1fc239bcd.tar.gz
dedo-d087fb44197a6e3dcb06ca2b831575c1fc239bcd.tar.xz
Merge pull request #2 from benbjohnson/master
gofmt
Diffstat (limited to 'cursor.go')
-rw-r--r--cursor.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cursor.go b/cursor.go
index 9c2fc25..7b8c9bb 100644
--- a/cursor.go
+++ b/cursor.go
@@ -7,8 +7,8 @@ import (
type Cursor struct {
transaction *Transaction
- root pgid
- stack []elem
+ root pgid
+ stack []elem
}
// elem represents a node on a page that's on the cursor's stack.
@@ -72,7 +72,7 @@ func (c *Cursor) nsearch(key []byte, p *page) {
// Binary search for the correct leaf node index.
nodes := p.lnodes()
- e.index = sort.Search(int(p.count), func(i int) bool {
+ e.index = sort.Search(int(p.count), func(i int) bool {
return bytes.Compare(nodes[i].key(), key) != -1
})
}