diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-01-30 17:04:56 -0500 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-01-30 17:04:56 -0500 |
commit | 8d5757e9dd1891b3d05f7acc7fe3d5a1d664ff6f (patch) | |
tree | d26fce9fde960698f43f115d792d4fc36d05d53a /bucket.go | |
parent | Merge pull request #1 from benbjohnson/master (diff) | |
download | dedo-8d5757e9dd1891b3d05f7acc7fe3d5a1d664ff6f.tar.gz dedo-8d5757e9dd1891b3d05f7acc7fe3d5a1d664ff6f.tar.xz |
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), } } |