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

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