File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
integration-tests/api/__tests__/admin/order-edit
utils/packages/docs-generator/src/classes/kinds Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff 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 })
Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff 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" ,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments