]> git.mdlowis.com Git - projs/libcds.git/commitdiff
fix documentation
authora bellenir <a@bellenir.com>
Fri, 1 Aug 2014 01:14:31 +0000 (01:14 +0000)
committera bellenir <a@bellenir.com>
Fri, 1 Aug 2014 01:14:31 +0000 (01:14 +0000)
source/list/list.h

index a55d662bcea5237b8e9fb7fb14211ad85b315e33..1218da3fa4c5208fc49ecfc657bab8a12710c704 100644 (file)
@@ -188,9 +188,6 @@ list_node_t* list_insert( list_t* list, size_t index, void* contents);
 /**
  * @brief Inserts a new node in a linked list after the specified node
  *
- * This function traverses the list to the specified and inserts a new node after
- * it with the given contents at that position.
- *
  * @param list     The list to operate on.
  * @param node     The node after which the item should be inserted.
  * @param contents The contents of the new node.