Skip to content

Commit

Permalink
refactor: semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
yuqizhou77 committed Sep 5, 2023
1 parent a524ab9 commit 0879bfe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export class CopilotPluginGenerator {
if (apisMissingOperationId.length > 0) {
operationIdWarning.content = util.format(
ConstantString.MissingOperationId,
apisMissingOperationId.join(", ")
apisMissingOperationId.join("; ")
);
delete operationIdWarning.data;
} else {
Expand Down Expand Up @@ -208,7 +208,7 @@ export class CopilotPluginGenerator {
[specParserGenerateResultAllSuccessTelemetryProperty]: generateResult.allSuccess.toString(),
[specParserGenerateResultWarningsTelemetryProperty]: generateResult.warnings
.map((w) => w.type.toString())
.join(","),
.join("; "),
});

if (generateResult.warnings.length > 0) {
Expand Down

0 comments on commit 0879bfe

Please sign in to comment.