summaryrefslogtreecommitdiff
path: root/lib/gl_anytree_oset.h
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2018-12-08 15:25:51 +0100
committerBruno Haible <bruno@clisp.org>2018-12-08 20:42:44 +0100
commitb457ace1eed823e5822884872034b42aa8a77b7f (patch)
tree686464c68ef8b735adb200ff7564cb5840aa884b /lib/gl_anytree_oset.h
parent566f133cb4f1ebd329760eb92792b34f8d58b132 (diff)
downloadgnulib-b457ace1eed823e5822884872034b42aa8a77b7f.tar.gz
Fix comments.
* lib/gl_list.h (gl_list_free): Clarify what it does. * lib/gl_oset.h (gl_oset_free): Likewise. * lib/gl_set.h (gl_set_free): Likewise. * lib/gl_anytree_oset.h (gl_tree_search_atleast): Fix typo in comment. * lib/gl_array_oset.c (gl_array_search_atleast): Likewise. * lib/gl_anyavltree_list1.h (MAXHEIGHT): Likewise. * lib/gl_avltree_oset.c (MAXHEIGHT): Likewise.
Diffstat (limited to 'lib/gl_anytree_oset.h')
-rw-r--r--lib/gl_anytree_oset.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gl_anytree_oset.h b/lib/gl_anytree_oset.h
index ee71f5e0a3..8adf645c3f 100644
--- a/lib/gl_anytree_oset.h
+++ b/lib/gl_anytree_oset.h
@@ -91,7 +91,7 @@ gl_tree_search_atleast (gl_oset_t set,
node = node->right;
else
{
- /* We have an element >= VALUE. But we need the leftmost such
+ /* We have an element >= THRESHOLD. But we need the leftmost such
element. */
gl_oset_node_t found = node;
node = node->left;