diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-04-13 16:27:25 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-05-02 19:24:35 +0200 |
commit | 32b3385c56912dac71e7f54fe03ff895cb4381c5 (patch) | |
tree | 1ec54079f72e371304728caffa2886a45f0b6099 | |
parent | ef0547c90584f589281051d7b9b9f8b208b5b55b (diff) |
kern: fix comment
* kern/rbtree.h: Fix comment.
-rw-r--r-- | kern/rbtree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/rbtree.h b/kern/rbtree.h index f577f7e..189a7fd 100644 --- a/kern/rbtree.h +++ b/kern/rbtree.h @@ -177,8 +177,8 @@ MACRO_END * This macro performs a standard lookup to obtain the insertion point of * the given node in the tree (it is assumed that the inserted node never * compares equal to any other entry in the tree) and links the node. It - * then It then checks red-black rules violations, and rebalances the tree - * if necessary. + * then checks red-black rules violations, and rebalances the tree if + * necessary. * * Unlike rbtree_lookup(), the cmp_fn parameter must compare two complete * entries, so it is suggested to use two different comparison inline |