From f0dd5b8a4338814e1c9a56ac900bcd856d624512 Mon Sep 17 00:00:00 2001 From: flakey5 <73616808+flakey5@users.noreply.github.com> Date: Wed, 19 Apr 2023 19:16:45 -0700 Subject: [PATCH] Fix typo in benchmarking docs (#2702) --- docs/project/benchmarking.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/project/benchmarking.md b/docs/project/benchmarking.md index 96b06b6405..0187665d31 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