From 339c0b622e683a585bd82e7f9b92bf0cede4c9e2 Mon Sep 17 00:00:00 2001 From: va-z <47354230+va-z@users.noreply.github.com> Date: Sat, 27 Jul 2019 01:44:17 +0500 Subject: [PATCH] Fix typo line 46: changed "we loose" to "we lose" --- .../01-recursion/04-output-single-linked-list/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/01-recursion/04-output-single-linked-list/solution.md b/1-js/06-advanced-functions/01-recursion/04-output-single-linked-list/solution.md index 4e9de146..cfcbffea 100644 --- a/1-js/06-advanced-functions/01-recursion/04-output-single-linked-list/solution.md +++ b/1-js/06-advanced-functions/01-recursion/04-output-single-linked-list/solution.md @@ -43,7 +43,7 @@ function printList(list) { } ``` -...But that would be unwise. In the future we may need to extend a function, do something else with the list. If we change `list`, then we loose such ability. +...But that would be unwise. In the future we may need to extend a function, do something else with the list. If we change `list`, then we lose such ability. Talking about good variable names, `list` here is the list itself. The first element of it. And it should remain like that. That's clear and reliable.