src/cx/linked_list.h

changeset 1241
ebcc08023c33
parent 1239
b4b1f15d1866
--- a/src/cx/linked_list.h	Mon Mar 10 11:54:46 2025 +0100
+++ b/src/cx/linked_list.h	Mon Mar 10 17:03:26 2025 +0100
@@ -393,7 +393,7 @@
  * @li @p loc_next and @p loc_prev (ancestor node is determined by using the prev pointer, overall O(1) performance)
  * @li @p loc_next and @p begin (ancestor node is determined by list traversal, overall O(n) performance)
  *
- * @remark The @c next and @c prev pointers of the removed node are not cleared by this function and may still be used
+ * @remark The @c next and @c prev pointers of the removed chain are not cleared by this function and may still be used
  * to traverse to a former adjacent node in the list, or within the chain.
  *
  * @param begin a pointer to the beginning node pointer (optional)

mercurial