fix some typos (#14017)

Co-authored-by: William Bouchard <46496014+willbouch@users.noreply.github.com>
This commit is contained in:
Dhanush Reddy
2025-11-14 19:24:28 +05:30
committed by GitHub
parent c2c3ad5ba5
commit 178b1e2b47
4 changed files with 6 additions and 6 deletions

View File

@@ -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 })

View File

@@ -145,7 +145,7 @@ const generatedgeneratedTroubleshootingSidebarSidebar = {
"isPathHref": true,
"type": "link",
"path": "/troubleshooting/query/filter-linked",
"title": "Not Exising Property",
"title": "Not Existing Property",
"children": []
},
{

View File

@@ -95,7 +95,7 @@ export const troubleshootingSidebar = [
{
type: "link",
path: "/troubleshooting/query/filter-linked",
title: "Not Exising Property",
title: "Not Existing Property",
},
{
type: "link",

View File

@@ -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