Skip to content

Commit

Permalink
update pr
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz committed Sep 8, 2024
1 parent 8fbb021 commit b970f8f
Show file tree
Hide file tree
Showing 2 changed files with 563 additions and 982 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const outputPath = "path/to/output/file";

const schemaString = JSON.stringify(schema, null, 2);
fs.writeFile(outputPath, schemaString, (err) => {
if (err) throw err);
if (err) throw err;
});
```

Expand Down Expand Up @@ -213,7 +213,7 @@ const outputPath = "path/to/output/file";

const schemaString = JSON.stringify(schema, null, 2);
fs.writeFile(outputPath, schemaString, (err) => {
if (err) throw err);
if (err) throw err;
});
```

Expand Down
Loading

0 comments on commit b970f8f

Please sign in to comment.