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() {