Skip to content

Commit f0a60ef

Browse files
committed
fixup!
1 parent 67f200e commit f0a60ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pages/napi/special-topics/context-awareness.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,10 +271,10 @@ if (process.argv[2] === 'child') {
271271
}
272272
273273
const child = child_process.fork(__filename, ['child'], {
274-
stdio: 'inherit'
274+
stdio: 'inherit',
275275
});
276276
277-
child.on('exit', (code) => {
277+
child.on('exit', code => {
278278
assert.strictEqual(code, 0);
279279
});
280280
```

0 commit comments

Comments
 (0)