From 6e62654ced6ac3cd17685075ba337f302c000119 Mon Sep 17 00:00:00 2001 From: Hammy Date: Thu, 30 Dec 2021 07:19:46 +0000 Subject: [PATCH] Update documentation --- src/list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/list.h b/src/list.h index 9ddc74e..ce0ebc4 100644 --- a/src/list.h +++ b/src/list.h @@ -79,7 +79,7 @@ int List_append_all(List *list, int element_count, ...); * * Returns * ---------------------------- - * int (0 for success, Non-0 for error) + * int (The previous element at the given index before inserting) */ int List_insert(List *list, int index, int element);