From bc8b37bafc917eab950228da745aadb591bd15c1 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 13 Jan 2021 20:01:03 +0300 Subject: [PATCH] minor fixes --- 1-js/04-object-basics/03-garbage-collection/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/04-object-basics/03-garbage-collection/article.md b/1-js/04-object-basics/03-garbage-collection/article.md index 9750d33a..72e30469 100644 --- a/1-js/04-object-basics/03-garbage-collection/article.md +++ b/1-js/04-object-basics/03-garbage-collection/article.md @@ -14,8 +14,8 @@ Simply put, "reachable" values are those that are accessible or usable somehow. For instance: - - Local variables and parameters of the current function. - - Variables and parameters for other functions on the current chain of nested calls. + - The currently executing function, its local variables and parameters. + - Other functions on the current chain of nested calls, their local variables and parameters. - Global variables. - (there are some other, internal ones as well)