From ebd8e895ce32daa25d1fb6f0eda1eec623571dcd Mon Sep 17 00:00:00 2001 From: mom Date: Wed, 28 Jan 2026 01:56:34 +0000 Subject: [PATCH] fix: typos in comments (fixes #1016) --- packages/ai/test/stream.test.ts | 2 +- packages/web-ui/src/components/SandboxedIframe.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ai/test/stream.test.ts b/packages/ai/test/stream.test.ts index 7a302a13..2434db06 100644 --- a/packages/ai/test/stream.test.ts +++ b/packages/ai/test/stream.test.ts @@ -783,7 +783,7 @@ describe("Generate E2E Tests", () => { }); it("should handle thinking mode", { retry: 3 }, async () => { - // FIXME Skip for now, getting a 422 stauts code, need to test with official SDK + // FIXME Skip for now, getting a 422 status code, need to test with official SDK // const llm = getModel("mistral", "magistral-medium-latest"); // await handleThinking(llm, { reasoningEffort: "medium" }); }); diff --git a/packages/web-ui/src/components/SandboxedIframe.ts b/packages/web-ui/src/components/SandboxedIframe.ts index f1e8cb1f..dd8f15ec 100644 --- a/packages/web-ui/src/components/SandboxedIframe.ts +++ b/packages/web-ui/src/components/SandboxedIframe.ts @@ -562,7 +562,7 @@ export class SandboxIframe extends LitElement { .join("\n"); // TODO the font-size is needed, as chrome seems to inject a stylesheet into iframes - // found in an extension context like sidepanel, settin body { font-size: 75% }. It's + // found in an extension context like sidepanel, setting body { font-size: 75% }. It's // definitely not our code doing that. // See https://stackoverflow.com/questions/71480433/chrome-is-injecting-some-stylesheet-in-popup-ui-which-reduces-the-font-size-to-7