aboutsummaryrefslogtreecommitdiffstats
path: root/module/avl/avl.c
diff options
context:
space:
mode:
authorAndrea Gelmini <[email protected]>2021-04-02 18:38:53 -0700
committerBrian Behlendorf <[email protected]>2021-04-02 18:52:15 -0700
commitbf169e9f15efbc343b931f20cfad5d2b59c8a821 (patch)
treea15662d4490569937a30c715704ff51a698a2473 /module/avl/avl.c
parent943df59ed942182427ed50b94a346dc22c4407e6 (diff)
Fix various typos
Correct an assortment of typos throughout the code base. Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: Matthew Ahrens <[email protected]> Reviewed-by: Ryan Moeller <[email protected]> Signed-off-by: Andrea Gelmini <[email protected]> Closes #11774
Diffstat (limited to 'module/avl/avl.c')
-rw-r--r--module/avl/avl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/avl/avl.c b/module/avl/avl.c
index d0473d883..1a95092bc 100644
--- a/module/avl/avl.c
+++ b/module/avl/avl.c
@@ -1008,7 +1008,7 @@ avl_destroy_nodes(avl_tree_t *tree, void **cookie)
--tree->avl_numnodes;
/*
- * If we just did a right child or there isn't one, go up to parent.
+ * If we just removed a right child or there isn't one, go up to parent.
*/
if (child == 1 || parent->avl_child[1] == NULL) {
node = parent;