Skip to content

Commit

Permalink
docs: fix grammatical error in engine mismatch message (#907)
Browse files Browse the repository at this point in the history
  • Loading branch information
joyceerhl committed Oct 24, 2023
1 parent 955a554 commit a001296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export function validateVSCodeTypesCompatibility(engineVersion: string, typeVers
});

const error = new Error(
`@types/vscode ${typeVersion} greater than engines.vscode ${engineVersion}. Consider upgrade engines.vscode or use an older @types/vscode version`
`@types/vscode ${typeVersion} greater than engines.vscode ${engineVersion}. Either upgrade engines.vscode or use an older @types/vscode version`
);

if (typeMajor > engineMajor) {
Expand Down

0 comments on commit a001296

Please sign in to comment.