From 58a7387ff4d8c958abbd5fd98f8781b8a8289ae1 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Sun, 12 Sep 2021 17:04:34 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for 57953be1 --- 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 fe16a0ec9..b433b76dd 100644 --- a/data_structures/reverse_a_linked_list.cpp +++ b/data_structures/reverse_a_linked_list.cpp @@ -5,7 +5,7 @@ * @details * The linked list is a data structure used for holding a sequence of * 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