# HG changeset patch # User Mike Becker # Date 1725901247 -7200 # Node ID 1c1ee61c01f93294f1ecea20ad636d6cec840bf9 # Parent 608b14deea182c4340efed75e7c8e8608437fb6c fix typo in documentation diff -r 608b14deea18 -r 1c1ee61c01f9 src/cx/linked_list.h --- a/src/cx/linked_list.h Sun Sep 01 16:14:34 2024 +0200 +++ b/src/cx/linked_list.h Mon Sep 09 19:00:47 2024 +0200 @@ -282,7 +282,7 @@ * @param loc_prev the location of a \c prev pointer within your node struct (negative if your struct does not have one) * @param loc_next the location of a \c next pointer within your node struct (required) * @param node the node after which to insert (\c NULL if you want to prepend the node to the list) - * @param new_node a pointer to the node that shall be prepended + * @param new_node a pointer to the node that shall be inserted */ void cx_linked_list_insert( void **begin,