diff --git a/src/content/docs/workers/runtime-apis/nodejs/util.mdx b/src/content/docs/workers/runtime-apis/nodejs/util.mdx index 38b962b60b50773..d8b726e4618354f 100644 --- a/src/content/docs/workers/runtime-apis/nodejs/util.mdx +++ b/src/content/docs/workers/runtime-apis/nodejs/util.mdx @@ -41,7 +41,7 @@ async function foo(args) { const callbackifiedFoo = callbackify(foo); callbackifiedFoo(args, (err, value) => { - If (err) throw err; + if (err) throw err; }); ```