From 650a2fdc461ce1e3d0211b0af744b96af84d37f6 Mon Sep 17 00:00:00 2001 From: Tisha Soumya Date: Mon, 6 Sep 2021 23:58:24 +0530 Subject: [PATCH] Update data_structures/reverse_a_linked_list.cpp Co-authored-by: David Leal --- data_structures/reverse_a_linked_list.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/data_structures/reverse_a_linked_list.cpp b/data_structures/reverse_a_linked_list.cpp index 7f107d0b6..fb421cd44 100644 --- a/data_structures/reverse_a_linked_list.cpp +++ b/data_structures/reverse_a_linked_list.cpp @@ -77,8 +77,7 @@ void reverseList(Node **head) { *head = prev; } /** - * Main function: - * Allows the user add ,display and reverse values from the list. + * @brief Main function * @returns 0 on exit */ int main() {