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. */