From 2f980540fb6688dd8bb98e2257e6324fbe26f01d Mon Sep 17 00:00:00 2001 From: Mahdyar Hasanpour Date: Mon, 4 Oct 2021 18:44:46 +0330 Subject: [PATCH] chore: fix a typo --- .../05-output-single-linked-list-reverse/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/01-recursion/05-output-single-linked-list-reverse/solution.md b/1-js/06-advanced-functions/01-recursion/05-output-single-linked-list-reverse/solution.md index 4357ff20..0eb76ea1 100644 --- a/1-js/06-advanced-functions/01-recursion/05-output-single-linked-list-reverse/solution.md +++ b/1-js/06-advanced-functions/01-recursion/05-output-single-linked-list-reverse/solution.md @@ -33,7 +33,7 @@ printReverseList(list); # Using a loop -The loop variant is also a little bit more complicated then the direct output. +The loop variant is also a little bit more complicated than the direct output. There is no way to get the last value in our `list`. We also can't "go back".