From 59d2691d5bd36f0dd6be5121e47e885df4445395 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Sun, 12 Sep 2021 17:42:21 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for db8e74a9 --- 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 0ed7ba3e1..890f5ed4d 100644 --- a/data_structures/reverse_a_linked_list.cpp +++ b/data_structures/reverse_a_linked_list.cpp @@ -18,7 +18,8 @@ * happens. And then we move the prev and current pointers one step forward. * Then the head node is made to point to the last node (prev pointer) after * completion of an iteration. - * [A graphic explanation and view of what's happening behind the scenes](https://drive.google.com/file/d/1pM5COF0wx-wermnNy_svtyZquaCUP2xS/view?usp=sharing) + * [A graphic explanation and view of what's happening behind the + scenes](https://drive.google.com/file/d/1pM5COF0wx-wermnNy_svtyZquaCUP2xS/view?usp=sharing) * */ #include /// for assert