From 178b1e2b476496129d603e23d52ee4651ac39486 Mon Sep 17 00:00:00 2001 From: Dhanush Reddy <76517652+dhanushreddy291@users.noreply.github.com> Date: Fri, 14 Nov 2025 19:24:28 +0530 Subject: [PATCH] fix some typos (#14017) Co-authored-by: William Bouchard <46496014+willbouch@users.noreply.github.com> --- .../api/__tests__/admin/order-edit/order-edit.js.txt | 4 ++-- .../resources/generated/generated-troubleshooting-sidebar.mjs | 2 +- www/apps/resources/sidebars/troubleshooting.mjs | 2 +- www/utils/packages/docs-generator/src/classes/kinds/oas.ts | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/integration-tests/api/__tests__/admin/order-edit/order-edit.js.txt b/integration-tests/api/__tests__/admin/order-edit/order-edit.js.txt index cca6f6c602..ae393a0fd7 100644 --- a/integration-tests/api/__tests__/admin/order-edit/order-edit.js.txt +++ b/integration-tests/api/__tests__/admin/order-edit/order-edit.js.txt @@ -2227,7 +2227,7 @@ describe("/admin/order-edits", () => { ) }) - it("update an exising order edit item change of type update on multiple line item update", async () => { + it("update an existing order edit item change of type update on multiple line item update", async () => { const api = useApi() const { @@ -2402,7 +2402,7 @@ describe("/admin/order-edits", () => { ) }) - it("update an exising order edit item change of type update on multiple line item update with correct totals including discounts", async () => { + it("update an existing order edit item change of type update on multiple line item update with correct totals including discounts", async () => { const api = useApi() const region = await simpleRegionFactory(dbConnection, { tax_rate: 10 }) diff --git a/www/apps/resources/generated/generated-troubleshooting-sidebar.mjs b/www/apps/resources/generated/generated-troubleshooting-sidebar.mjs index ebc2012ed4..ce2a6a124e 100644 --- a/www/apps/resources/generated/generated-troubleshooting-sidebar.mjs +++ b/www/apps/resources/generated/generated-troubleshooting-sidebar.mjs @@ -145,7 +145,7 @@ const generatedgeneratedTroubleshootingSidebarSidebar = { "isPathHref": true, "type": "link", "path": "/troubleshooting/query/filter-linked", - "title": "Not Exising Property", + "title": "Not Existing Property", "children": [] }, { diff --git a/www/apps/resources/sidebars/troubleshooting.mjs b/www/apps/resources/sidebars/troubleshooting.mjs index 272911ec37..0f8052eb3f 100644 --- a/www/apps/resources/sidebars/troubleshooting.mjs +++ b/www/apps/resources/sidebars/troubleshooting.mjs @@ -95,7 +95,7 @@ export const troubleshootingSidebar = [ { type: "link", path: "/troubleshooting/query/filter-linked", - title: "Not Exising Property", + title: "Not Existing Property", }, { type: "link", diff --git a/www/utils/packages/docs-generator/src/classes/kinds/oas.ts b/www/utils/packages/docs-generator/src/classes/kinds/oas.ts index b588d1a878..920ef60a28 100644 --- a/www/utils/packages/docs-generator/src/classes/kinds/oas.ts +++ b/www/utils/packages/docs-generator/src/classes/kinds/oas.ts @@ -2478,7 +2478,7 @@ class OasKindGenerator extends FunctionKindGenerator { } if (oldSchemaObj?.deprecated !== newSchemaObj?.deprecated) { - // avoid many changes to exising OAS + // avoid many changes to existing OAS if (!newSchemaObj?.deprecated) { if (oldSchemaObj!.deprecated) { wasUpdated = true @@ -2491,7 +2491,7 @@ class OasKindGenerator extends FunctionKindGenerator { } if (oldSchemaObj?.["x-featureFlag"] !== newSchemaObj?.["x-featureFlag"]) { - // avoid many changes to exising OAS + // avoid many changes to existing OAS if (!newSchemaObj?.["x-featureFlag"]) { if (oldSchemaObj!["x-featureFlag"]) { wasUpdated = true