Skip to content

Commit c6620f6

Browse files
authored
Fix typo
1 parent 852b9bf commit c6620f6

File tree

1 file changed

+1
-1
lines changed
  • 1-js/06-advanced-functions/01-recursion/05-output-single-linked-list-reverse

1 file changed

+1
-1
lines changed

1-js/06-advanced-functions/01-recursion/05-output-single-linked-list-reverse/solution.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The loop variant is also a little bit more complicated then the direct output.
3737

3838
There is no way to get the last value in our `list`. We also can't "go back".
3939

40-
So what we can do is to first go through the items in the direct order and rememeber them in an array, and then output what we remembered in the reverse order:
40+
So what we can do is to first go through the items in the direct order and remember them in an array, and then output what we remembered in the reverse order:
4141

4242
```js run
4343
let list = {

0 commit comments

Comments
 (0)