Skip to content

Commit

Permalink
Fix a minor typo: "enterely" -> "entirely"
Browse files Browse the repository at this point in the history
  • Loading branch information
hristozov committed Aug 30, 2016
1 parent 1f3538f commit 209c0ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v8-tips/freeing-memory.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var foo = { bar: 'hello world' }
delete foo.bar
```

If you want do delete the `Object` enterely, then simply `foo = null`.
If you want do delete the `Object` entirely, then simply `foo = null`.

Garbage Collector are interested in `Object`'s that are not referenced by any other `Object`.

Expand Down

0 comments on commit 209c0ae

Please sign in to comment.