Skip to content

Commit 94342f2

Browse files
authored
Fix capitalization of 'if' in util.mdx
1 parent 6c738db commit 94342f2

File tree

1 file changed

+1
-1
lines changed
  • src/content/docs/workers/runtime-apis/nodejs

1 file changed

+1
-1
lines changed

src/content/docs/workers/runtime-apis/nodejs/util.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ async function foo(args) {
4141
const callbackifiedFoo = callbackify(foo);
4242

4343
callbackifiedFoo(args, (err, value) => {
44-
If (err) throw err;
44+
if (err) throw err;
4545
});
4646
```
4747

0 commit comments

Comments
 (0)