From 8740c411e4f5dba64ce0f4e4855a47095c2350cd Mon Sep 17 00:00:00 2001 From: Tisha Soumya Date: Sun, 12 Sep 2021 22:33:14 +0530 Subject: [PATCH] docs : documentation fixes Co-authored-by: David Leal --- data_structures/reverse_a_linked_list.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/data_structures/reverse_a_linked_list.cpp b/data_structures/reverse_a_linked_list.cpp index 29c9ec7f6..c8cc0a327 100644 --- a/data_structures/reverse_a_linked_list.cpp +++ b/data_structures/reverse_a_linked_list.cpp @@ -4,7 +4,8 @@ * a single linked list](https://simple.wikipedia.org/wiki/Linked_list) * @details * The linked list is a data structure used for holding a sequence of - * values, which can be added, displayed,reversed, or removed. + * values, which can be added, displayed, reversed, or removed. + * ### Algorithm * Values can be added by iterating to the end of a list (by following * the pointers) starting from the first link. Whichever link points to null