Updating data_structures/reverse_a_linked_list.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Tisha Soumya 2021-09-07 00:01:02 +05:30 committed by GitHub
parent 123d6640bb
commit 3c2cf78b79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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