From 3c2cf78b792e40c62bd4cfff7c6f84a69838ee92 Mon Sep 17 00:00:00 2001 From: Tisha Soumya Date: Tue, 7 Sep 2021 00:01:02 +0530 Subject: [PATCH] Updating data_structures/reverse_a_linked_list.cpp Co-authored-by: David Leal --- data_structures/reverse_a_linked_list.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structures/reverse_a_linked_list.cpp b/data_structures/reverse_a_linked_list.cpp index 38e50e5f1..37933beff 100644 --- a/data_structures/reverse_a_linked_list.cpp +++ b/data_structures/reverse_a_linked_list.cpp @@ -49,7 +49,7 @@ void create(Node **head, int n) { } } /** - * function displays all the elements in the list + * @brief Utility function that displays all the elements in the list * @returns void * @param node pointer for traversing the list. */