From 501f8c35c671844766d20d40aa901ed862af0b30 Mon Sep 17 00:00:00 2001 From: vil02 <65706193+vil02@users.noreply.github.com> Date: Fri, 31 Jan 2025 08:06:31 +0100 Subject: [PATCH] [Workers AI] Properly spell `occurred` --- .../workers-ai/tutorials/using-bigquery-with-workers-ai.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/docs/workers-ai/tutorials/using-bigquery-with-workers-ai.mdx b/src/content/docs/workers-ai/tutorials/using-bigquery-with-workers-ai.mdx index 8b3b32ba0b2563..276d2d52371235 100644 --- a/src/content/docs/workers-ai/tutorials/using-bigquery-with-workers-ai.mdx +++ b/src/content/docs/workers-ai/tutorials/using-bigquery-with-workers-ai.mdx @@ -224,7 +224,7 @@ export default { try { bqJWT = await generateBQJWT(env); } catch (e) { - return new Response('An error has ocurred while generating the JWT', { status: 500 }) + return new Response('An error has occurred while generating the JWT', { status: 500 }) } }, ... @@ -596,7 +596,7 @@ export default { bqJWT = await generateBQJWT(env); } catch (error) { console.log(error); - return new Response("An error has ocurred while generating the JWT", { + return new Response("An error has occurred while generating the JWT", { status: 500, }); }