Skip to content

Commit 178b1e2

Browse files
fix some typos (#14017)
Co-authored-by: William Bouchard <[email protected]>
1 parent c2c3ad5 commit 178b1e2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

integration-tests/api/__tests__/admin/order-edit/order-edit.js.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2227,7 +2227,7 @@ describe("/admin/order-edits", () => {
22272227
)
22282228
})
22292229

2230-
it("update an exising order edit item change of type update on multiple line item update", async () => {
2230+
it("update an existing order edit item change of type update on multiple line item update", async () => {
22312231
const api = useApi()
22322232

22332233
const {
@@ -2402,7 +2402,7 @@ describe("/admin/order-edits", () => {
24022402
)
24032403
})
24042404

2405-
it("update an exising order edit item change of type update on multiple line item update with correct totals including discounts", async () => {
2405+
it("update an existing order edit item change of type update on multiple line item update with correct totals including discounts", async () => {
24062406
const api = useApi()
24072407

24082408
const region = await simpleRegionFactory(dbConnection, { tax_rate: 10 })

www/apps/resources/generated/generated-troubleshooting-sidebar.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ const generatedgeneratedTroubleshootingSidebarSidebar = {
145145
"isPathHref": true,
146146
"type": "link",
147147
"path": "/troubleshooting/query/filter-linked",
148-
"title": "Not Exising Property",
148+
"title": "Not Existing Property",
149149
"children": []
150150
},
151151
{

www/apps/resources/sidebars/troubleshooting.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export const troubleshootingSidebar = [
9595
{
9696
type: "link",
9797
path: "/troubleshooting/query/filter-linked",
98-
title: "Not Exising Property",
98+
title: "Not Existing Property",
9999
},
100100
{
101101
type: "link",

www/utils/packages/docs-generator/src/classes/kinds/oas.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2478,7 +2478,7 @@ class OasKindGenerator extends FunctionKindGenerator {
24782478
}
24792479

24802480
if (oldSchemaObj?.deprecated !== newSchemaObj?.deprecated) {
2481-
// avoid many changes to exising OAS
2481+
// avoid many changes to existing OAS
24822482
if (!newSchemaObj?.deprecated) {
24832483
if (oldSchemaObj!.deprecated) {
24842484
wasUpdated = true
@@ -2491,7 +2491,7 @@ class OasKindGenerator extends FunctionKindGenerator {
24912491
}
24922492

24932493
if (oldSchemaObj?.["x-featureFlag"] !== newSchemaObj?.["x-featureFlag"]) {
2494-
// avoid many changes to exising OAS
2494+
// avoid many changes to existing OAS
24952495
if (!newSchemaObj?.["x-featureFlag"]) {
24962496
if (oldSchemaObj!["x-featureFlag"]) {
24972497
wasUpdated = true

0 commit comments

Comments
 (0)