aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-12-01 02:36:33 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-12-01 02:36:33 -0800
commitb655d09387463fc8e08df7f845a16f7806973bf8 (patch)
tree9cb184ba2c0d45bb255fb36ce483411a02608b17 /README.md
parente0503faec787f2c1b574918e798f2bb514f0ea42 (diff)
downloadbun-b655d09387463fc8e08df7f845a16f7806973bf8.tar.gz
bun-b655d09387463fc8e08df7f845a16f7806973bf8.tar.zst
bun-b655d09387463fc8e08df7f845a16f7806973bf8.zip
Incorrect readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 9100e65cc..2b344ab00 100644
--- a/README.md
+++ b/README.md
@@ -4795,7 +4795,7 @@ Heap snapshots let you inspect what objects are not being freed. You can use the
To generate a heap snapshot:
```ts
-import { generateHeapSnapshot } from "bun:jsc";
+import { generateHeapSnapshot } from "bun";
const snapshot = generateHeapSnapshot();
await Bun.write("heap.json", JSON.stringify(snapshot, null, 2));