From 8bc74f1bde6fb84523e286de43a50ee088cf03d4 Mon Sep 17 00:00:00 2001 From: Laurent Lyaudet Date: Wed, 24 Mar 2021 16:33:28 +0100 Subject: [PATCH] 1 typo in 06-function-object in 06-advanced-functions/06-function-object/5-sum-many-brackets/solution.md --- .../06-function-object/5-sum-many-brackets/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/06-function-object/5-sum-many-brackets/solution.md b/1-js/06-advanced-functions/06-function-object/5-sum-many-brackets/solution.md index 981da23c..e97039f7 100644 --- a/1-js/06-advanced-functions/06-function-object/5-sum-many-brackets/solution.md +++ b/1-js/06-advanced-functions/06-function-object/5-sum-many-brackets/solution.md @@ -52,4 +52,4 @@ function f(b) { } ``` -This `f` will be used in the next call, again return itself, so many times as needed. Then, when used as a number or a string -- the `toString` returns the `currentSum`. We could also use `Symbol.toPrimitive` or `valueOf` here for the conversion. +This `f` will be used in the next call, again return itself, as many times as needed. Then, when used as a number or a string -- the `toString` returns the `currentSum`. We could also use `Symbol.toPrimitive` or `valueOf` here for the conversion.