diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-02-06 16:14:47 -0700 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-02-06 16:14:47 -0700 |
commit | 53828385e0d3b9ee0b284f9252ff84010078ec2b (patch) | |
tree | 33485d29da8c1e4ef5b0754b481231c05ecd372e /node.go | |
parent | Merge pull request #8 from benbjohnson/master (diff) | |
parent | Fix multi-put transaction. (diff) | |
download | dedo-53828385e0d3b9ee0b284f9252ff84010078ec2b.tar.gz dedo-53828385e0d3b9ee0b284f9252ff84010078ec2b.tar.xz |
Merge pull request #18 from benbjohnson/master
Fix multi-put transaction.
Diffstat (limited to 'node.go')
-rw-r--r-- | node.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ func (n *node) root() *node { if n.parent == nil { return n } - return n.parent + return n.parent.root() } // put inserts a key/value. |