mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
store: fix typo "recurisive"
This commit is contained in:
parent
5f3fe7c61f
commit
a07c51a9c9
@ -251,7 +251,7 @@ func (n *node) Remove(dir, recursive bool, callback func(path string)) *etcdErr.
|
||||
return nil
|
||||
}
|
||||
|
||||
func (n *node) Repr(recurisive, sorted bool) *NodeExtern {
|
||||
func (n *node) Repr(recursive, sorted bool) *NodeExtern {
|
||||
if n.IsDir() {
|
||||
node := &NodeExtern{
|
||||
Key: n.Path,
|
||||
@ -261,7 +261,7 @@ func (n *node) Repr(recurisive, sorted bool) *NodeExtern {
|
||||
}
|
||||
node.Expiration, node.TTL = n.ExpirationAndTTL()
|
||||
|
||||
if !recurisive {
|
||||
if !recursive {
|
||||
return node
|
||||
}
|
||||
|
||||
@ -278,7 +278,7 @@ func (n *node) Repr(recurisive, sorted bool) *NodeExtern {
|
||||
continue
|
||||
}
|
||||
|
||||
node.Nodes[i] = child.Repr(recurisive, sorted)
|
||||
node.Nodes[i] = child.Repr(recursive, sorted)
|
||||
|
||||
i++
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user