diff --git a/data_structures/reverse_a_linked_list.cpp b/data_structures/reverse_a_linked_list.cpp index 5cd11783d..7f107d0b6 100644 --- a/data_structures/reverse_a_linked_list.cpp +++ b/data_structures/reverse_a_linked_list.cpp @@ -50,7 +50,7 @@ void create(Node **head, int n) { } /** * function displays all the elements in the list - * @returns 'void' + * @returns void * @param node pointer for traversing the list. */ void printList(Node *node) {