Browse Source

Merge pull request #1268 from jonboulle/store_typo

store: fix typo "recurisive"
Jonathan Boulle 11 years ago
parent
commit
b4a7680bc4
1 changed files with 3 additions and 3 deletions
  1. 3 3
      store/node.go

+ 3 - 3
store/node.go

@@ -251,7 +251,7 @@ func (n *node) Remove(dir, recursive bool, callback func(path string)) *etcdErr.
 	return nil
 	return nil
 }
 }
 
 
-func (n *node) Repr(recurisive, sorted bool) *NodeExtern {
+func (n *node) Repr(recursive, sorted bool) *NodeExtern {
 	if n.IsDir() {
 	if n.IsDir() {
 		node := &NodeExtern{
 		node := &NodeExtern{
 			Key:           n.Path,
 			Key:           n.Path,
@@ -261,7 +261,7 @@ func (n *node) Repr(recurisive, sorted bool) *NodeExtern {
 		}
 		}
 		node.Expiration, node.TTL = n.ExpirationAndTTL()
 		node.Expiration, node.TTL = n.ExpirationAndTTL()
 
 
-		if !recurisive {
+		if !recursive {
 			return node
 			return node
 		}
 		}
 
 
@@ -278,7 +278,7 @@ func (n *node) Repr(recurisive, sorted bool) *NodeExtern {
 				continue
 				continue
 			}
 			}
 
 
-			node.Nodes[i] = child.Repr(recurisive, sorted)
+			node.Nodes[i] = child.Repr(recursive, sorted)
 
 
 			i++
 			i++
 		}
 		}