diff options
author | 2023-04-19 19:16:45 -0700 | |
---|---|---|
committer | 2023-04-19 19:16:45 -0700 | |
commit | f0dd5b8a4338814e1c9a56ac900bcd856d624512 (patch) | |
tree | 39ef5d0b4788f903bab2e5cf5e73dd40aaf9a02a /docs/project | |
parent | ea47ed0ee5969d31e03c55ba3bc384466615e513 (diff) | |
download | bun-f0dd5b8a4338814e1c9a56ac900bcd856d624512.tar.gz bun-f0dd5b8a4338814e1c9a56ac900bcd856d624512.tar.zst bun-f0dd5b8a4338814e1c9a56ac900bcd856d624512.zip |
Fix typo in benchmarking docs (#2702)
Diffstat (limited to 'docs/project')
-rw-r--r-- | docs/project/benchmarking.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/project/benchmarking.md b/docs/project/benchmarking.md index 96b06b640..0187665d3 100644 --- a/docs/project/benchmarking.md +++ b/docs/project/benchmarking.md @@ -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 |