Skip to content

Commit a648810

Browse files
authored
Move "Garbage collection" under a new "How it works" section.
1 parent eac0883 commit a648810

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,11 @@ tuple(1, "asdf", obj)[2].asdf = "oyez";
114114
assert.strictEqual(obj.asdf, "oyez");
115115
```
116116

117-
## Garbage collection
117+
## How it works
118+
119+
Thanks to [Docco](http://ashkenas.com/docco/), you can read my implementation comments side-by-side with the actual code by visiting [the GitHub pages site](https://benjamn.github.io/immutable-tuple/) for this repository.
120+
121+
### Garbage collection
118122

119123
Any data structure that guarantees `===` equality based on structural equality must maintain some sort of internal pool of previously encountered instances.
120124

0 commit comments

Comments
 (0)