Skip to content

Commit 2250e69

Browse files
authored
docs(devtools): change writeFileSync to fs.writeFileSync
1 parent fded7e9 commit 2250e69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/devtools/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ First, open up the `main.ts` file and update the `bootstrap()` call, as follows:
7070

7171
```typescript
7272
bootstrap().catch((err) => {
73-
writeFileSync('graph.json', PartialGraphHost.toString() ?? '');
73+
fs.writeFileSync('graph.json', PartialGraphHost.toString() ?? '');
7474
process.exit(1);
7575
});
7676
```

0 commit comments

Comments
 (0)