From 63c89ae656c72b2a616ef2517519d3ae5a96a171 Mon Sep 17 00:00:00 2001 From: Tyler Leonhardt Date: Thu, 16 Dec 2021 14:56:58 -0500 Subject: [PATCH] fix: typo --- src/validation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/validation.ts b/src/validation.ts index e3906420..483bd922 100644 --- a/src/validation.ts +++ b/src/validation.ts @@ -50,7 +50,7 @@ export function validateEngineCompatibility(version: string): void { /** * User shouldn't use a newer version of @types/vscode than the one specified in engines.vscode * - * NOTE: This is enforced at the major and minor level., Since we don't have control over the patch + * NOTE: This is enforced at the major and minor level. Since we don't have control over the patch * version (it's auto-incremented by DefinitelyTyped), we don't look at the patch version at all. */ export function validateVSCodeTypesCompatibility(engineVersion: string, typeVersion: string): void {