Skip to content

Commit d6f98e1

Browse files
authored
Fix a possible typo in 1.6.1
1 parent 15767fc commit d6f98e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/06-advanced-functions/01-recursion/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ The new current execution context is on top (and bold), and previous remembered
188188
When we finish the subcall -- it is easy to resume the previous context, because it keeps both variables and the exact place of the code where it stopped.
189189
190190
```smart
191-
Here in the picture we use the word "line", as our example there's only one subcall in line, but generally a single line of code may contain multiple subcalls, like `pow(…) + pow(…) + somethingElse(…)`.
191+
Here in the picture we use the word "line", as in our example there's only one subcall in line, but generally a single line of code may contain multiple subcalls, like `pow(…) + pow(…) + somethingElse(…)`.
192192
193193
So it would be more precise to say that the execution resumes "immediately after the subcall".
194194
```

0 commit comments

Comments
 (0)