diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-01-30 14:05:26 -0800 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-01-30 14:05:26 -0800 |
commit | d087fb44197a6e3dcb06ca2b831575c1fc239bcd (patch) | |
tree | 15503ce52ea1346876df77543b24e6c23594cb03 /bucket.go | |
parent | Badges. (diff) | |
parent | gofmt (diff) | |
download | dedo-d087fb44197a6e3dcb06ca2b831575c1fc239bcd.tar.gz dedo-d087fb44197a6e3dcb06ca2b831575c1fc239bcd.tar.xz |
Merge pull request #2 from benbjohnson/master
gofmt
Diffstat (limited to 'bucket.go')
-rw-r--r-- | bucket.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,7 +7,7 @@ type Bucket struct { } type bucket struct { - root pgid + root pgid } // Name returns the name of the bucket. @@ -24,7 +24,7 @@ func (b *Bucket) Get(key []byte) []byte { func (b *Bucket) Cursor() *Cursor { return &Cursor{ transaction: b.transaction, - root: b.root, - stack: make([]elem, 0), + root: b.root, + stack: make([]elem, 0), } } |