From 8852e9cb2ee73c12a73b31b604e81aa3816eee9a Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Wed, 23 Aug 2023 12:53:56 -0700 Subject: [PATCH] util/rb-tree: Fix typo in comment Trivial. Part-of: --- src/util/rb_tree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/rb_tree.h b/src/util/rb_tree.h index ac44370..2ccc102 100644 --- a/src/util/rb_tree.h +++ b/src/util/rb_tree.h @@ -41,7 +41,7 @@ extern "C" { struct rb_node { /** Parent and color of this node * - * The least significant bit represents the color and is est to 1 for + * The least significant bit represents the color and is set to 1 for * black and 0 for red. The other bits are the pointer to the parent * and that pointer can be retrieved by masking off the bottom bit and * casting to a pointer. -- 2.7.4