Skip to content

Commit bc8b37b

Browse files
committed
minor fixes
1 parent 58e6456 commit bc8b37b

File tree

1 file changed

+2
-2
lines changed
  • 1-js/04-object-basics/03-garbage-collection

1 file changed

+2
-2
lines changed

‎1-js/04-object-basics/03-garbage-collection/article.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Simply put, "reachable" values are those that are accessible or usable somehow.
1414

1515
For instance:
1616

17-
- Local variables and parameters of the current function.
18-
- Variables and parameters for other functions on the current chain of nested calls.
17+
- The currently executing function, its local variables and parameters.
18+
- Other functions on the current chain of nested calls, their local variables and parameters.
1919
- Global variables.
2020
- (there are some other, internal ones as well)
2121

0 commit comments

Comments
 (0)