Update data_structures/reverse_a_linked_list.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Tisha Soumya 2021-09-06 23:58:01 +05:30 committed by GitHub
parent 7cb21c9123
commit 55de9f9ddc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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