Fix typo in benchmarking docs (#2702)

This commit is contained in:
flakey5
2023-04-19 19:16:45 -07:00
committed by GitHub
parent ea47ed0ee5
commit f0dd5b8a43

View File

@@ -142,7 +142,7 @@ console.log(heapStats());
JavaScript is a garbage-collected language, not reference counted. It's normal and correct for objects to not be freed immediately in all cases, though it's not normal for objects to never be freed.
Tp force garbage collection to run manually:
To force garbage collection to run manually:
```js
Bun.gc(true); // synchronous