Skip to content

Commit

Permalink
doc: addressed comments about exit code
Browse files Browse the repository at this point in the history
  • Loading branch information
thedull committed Jan 18, 2022
1 parent 7ee423c commit e358dfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/tracing.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ in your code, such as:
```js
process.on('SIGINT', function onSigint() {
console.info('Received SIGINT.');
process.exit();
process.exit(130); // Or applicable exit code depending on OS and signal
});
```

Expand Down

0 comments on commit e358dfb

Please sign in to comment.