Merge pull request #67 from rzaaeeff/patch-3

Correct typo
This commit is contained in:
Ilya Kantor 2017-06-30 13:53:20 +03:00 committed by GitHub
commit 5b026335f5

View file

@ -23,7 +23,7 @@ Simply put, "reachable" values are those that are accessible or useable somehow.
These values are called *roots*. 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. 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.