Skip to content

Commit 1d2376b

Browse files
author
Preetha Appan
committed
Update comments
1 parent c07abca commit 1d2376b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎radix.go‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,8 @@ func (t *Tree) deletePrefix(parent, n *node, prefix string) int {
304304
// Check for key exhaustion
305305
if len(prefix) == 0 {
306306
// Remove the leaf node
307-
subTreeSize := 0 //count this node
308-
//recursively walk from all edges of the node to be deleted, tracking their mutate channels in the transaction
307+
subTreeSize := 0
308+
//recursively walk from all edges of the node to be deleted
309309
recursiveWalk(n, func(s string, v interface{}) bool {
310310
subTreeSize++
311311
return false

0 commit comments

Comments
 (0)