From fc428a78a2a92516aec07ccea314a93d2cc6f675 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Wed, 28 May 2025 12:28:50 +0200 Subject: [PATCH] include: list.h: fix inline docs for xorg_list_append() The docs stated it's prepending, while it's actually appending. Signed-off-by: Enrico Weigelt, metux IT consult --- include/list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/list.h b/include/list.h index f585b8f10..3051d44b6 100644 --- a/include/list.h +++ b/include/list.h @@ -168,7 +168,7 @@ xorg_list_add(struct xorg_list *entry, struct xorg_list *head) * struct foo *newfoo = malloc(...); * xorg_list_append(&newfoo->entry, &bar->list_of_foos); * - * @param entry The new element to prepend to the list. + * @param entry The new element to append to the list. * @param head The existing list. */ static inline void