From b19e896c50dda688a5d7527b7a3e4947878cdfb8 Mon Sep 17 00:00:00 2001 From: rzaaeeff Date: Thu, 29 Jun 2017 00:36:50 +0400 Subject: [PATCH] Correct typo --- 1-js/04-object-basics/02-garbage-collection/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/02-garbage-collection/article.md b/1-js/04-object-basics/02-garbage-collection/article.md index 6f4c832f..913e1e8c 100644 --- a/1-js/04-object-basics/02-garbage-collection/article.md +++ b/1-js/04-object-basics/02-garbage-collection/article.md @@ -23,7 +23,7 @@ Simply put, "reachable" values are those that are accessible or useable somehow. These values are called *roots*. -2. Any other value is considered reachable if it's reachable from a root by a reference of by a chain of references. +2. Any other value is considered reachable if it's reachable from a root by a reference or by a chain of references. For instance, if there's an object in a local variable, and that object has a property referencing another object, that object is considered reachable. And those that it references -- are also reachable. Detailed examples to follow.