diff options
author | 2022-12-01 02:36:33 -0800 | |
---|---|---|
committer | 2022-12-01 02:36:33 -0800 | |
commit | b655d09387463fc8e08df7f845a16f7806973bf8 (patch) | |
tree | 9cb184ba2c0d45bb255fb36ce483411a02608b17 /README.md | |
parent | e0503faec787f2c1b574918e798f2bb514f0ea42 (diff) | |
download | bun-b655d09387463fc8e08df7f845a16f7806973bf8.tar.gz bun-b655d09387463fc8e08df7f845a16f7806973bf8.tar.zst bun-b655d09387463fc8e08df7f845a16f7806973bf8.zip |
Incorrect readme
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); |