From 8ddc2dc31a928e728da56ed1bf4eb46c3ddeeae3 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Fri, 21 May 2021 10:32:05 -0700 Subject: [PATCH 1/2] Fix typo. --- Extension/src/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extension/src/common.ts b/Extension/src/common.ts index 3d5bc68f9..ab08d6e9c 100644 --- a/Extension/src/common.ts +++ b/Extension/src/common.ts @@ -1146,7 +1146,7 @@ export function getLocalizedString(params: LocalizeStringParams): string { export function getLocalizedSymbolScope(scope: string, detail: string): string { return localize({ key: "c.cpp.symbolscope.separator", comment: - ["{0} is an untranslated C++ keyword (e.g. \"private\") and {1} is either another keyword (e.g. \"typedef\") or a localized property (e.g. a localized verison of \"declaration\""] + ["{0} is an untranslated C++ keyword (e.g. \"private\") and {1} is either another keyword (e.g. \"typedef\") or a localized property (e.g. a localized version of \"declaration\""] }, "{0}, {1}", scope, detail); } From 60863a5363a8f1530fdd14c04dcdad2aac2be0ff Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Fri, 21 May 2021 10:33:41 -0700 Subject: [PATCH 2/2] Another typo. --- Extension/src/LanguageServer/configurations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extension/src/LanguageServer/configurations.ts b/Extension/src/LanguageServer/configurations.ts index d861a47e2..ad250170e 100644 --- a/Extension/src/LanguageServer/configurations.ts +++ b/Extension/src/LanguageServer/configurations.ts @@ -870,7 +870,7 @@ export class CppProperties { && settings.defaultIntelliSenseMode === "" && settings.defaultConfigurationProvider === ""; - // Only keep a cached custom browse config if there is an emptry configuration, + // Only keep a cached custom browse config if there is an empty configuration, // or if a specified provider ID has not changed. let keepCachedBrowseConfig: boolean = true; if (hasEmptyConfiguration) {