From 58568eac708436977b763a7a88071ae19c3e673d Mon Sep 17 00:00:00 2001 From: Steve Kim Date: Sun, 23 Jul 2023 00:40:57 -0700 Subject: [PATCH] code style --- src/containers/qtreetbl.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/containers/qtreetbl.c b/src/containers/qtreetbl.c index 53964815..f4cb9df1 100644 --- a/src/containers/qtreetbl.c +++ b/src/containers/qtreetbl.c @@ -998,12 +998,12 @@ int node_check_llrb(qtreetbl_t *tbl, qtreetbl_obj_t *obj) { /** * Verifies that the invariants of the red-black tree are satisfied. * - * Root property: The root of the red-black tree is black. - * Red property: The children of a red node are black. + * Root property: The root of the red-black tree is black. + * Red property: The children of a red node are black. * Black property: For each node with at least one null child, - * the number of black nodes on the path from the root - * to the null child is the same. - * LLRB property: 3-nodes always lean to the left and 4-nodes are balanced. + * the number of black nodes on the path from the root + * to the null child is the same. + * LLRB property: 3-nodes always lean to the left and 4-nodes are balanced. * * @param tbl qtreetbl_t container pointer. */