diff options
-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 |