From 55de9f9ddc8d8bfd782242dbdba9b850d222cbb0 Mon Sep 17 00:00:00 2001 From: Tisha Soumya Date: Mon, 6 Sep 2021 23:58:01 +0530 Subject: [PATCH] Update data_structures/reverse_a_linked_list.cpp Co-authored-by: David Leal --- data_structures/reverse_a_linked_list.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {