util/rb-tree: Fix typo in comment

Trivial.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24856>
This commit is contained in:
Ian Romanick
2023-08-23 12:53:56 -07:00
committed by Marge Bot
parent 2ff38260b9
commit 8852e9cb2e

View File

@@ -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.