From 438cc6df52ca234ba8f04734e628ca74c03b2971 Mon Sep 17 00:00:00 2001 From: Norbert Pocs Date: Wed, 16 Nov 2022 16:53:10 +0100 Subject: [PATCH] misc.c: Fix typo in docstring Signed-off-by: Norbert Pocs Reviewed-by: Jakub Jelen (cherry picked from commit 435f1549f1d01022c87c132041239e646b3ead7d) --- src/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc.c b/src/misc.c index 3493fa3b..7c478a77 100644 --- a/src/misc.c +++ b/src/misc.c @@ -826,7 +826,7 @@ void ssh_list_remove(struct ssh_list *list, struct ssh_iterator *iterator) * @brief Removes the top element of the list and returns the data value * attached to it. * - * @param[in[ list The ssh_list to remove the element. + * @param[in] list The ssh_list to remove the element. * * @returns A pointer to the element being stored in head, or NULL * if the list is empty.