From 6eedb9ca7676c3b966237ec9f111e107370c7bc4 Mon Sep 17 00:00:00 2001 From: Mike Stump Date: Thu, 12 Sep 2002 00:51:25 +0000 Subject: * splay-tree.c (splay_tree_successor): Fix comments. From-SVN: r57044 --- libiberty/splay-tree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libiberty/splay-tree.c') diff --git a/libiberty/splay-tree.c b/libiberty/splay-tree.c index 7999447bc11..3227ed3d3a6 100644 --- a/libiberty/splay-tree.c +++ b/libiberty/splay-tree.c @@ -482,7 +482,7 @@ splay_tree_predecessor (sp, key) } /* Return the immediate successor KEY, or NULL if there is no - predecessor. KEY need not be present in the tree. */ + successor. KEY need not be present in the tree. */ splay_tree_node splay_tree_successor (sp, key) @@ -492,7 +492,7 @@ splay_tree_successor (sp, key) int comparison; splay_tree_node node; - /* If the tree is empty, there is certainly no predecessor. */ + /* If the tree is empty, there is certainly no successor. */ if (!sp->root) return NULL; -- cgit v1.2.3