Skip to content

Commit 61ef05a

Browse files
authored
Fix typos. (#7573)
* Fix typos.
1 parent 357cc3f commit 61ef05a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Extension/src/LanguageServer/configurations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ export class CppProperties {
870870
&& settings.defaultIntelliSenseMode === ""
871871
&& settings.defaultConfigurationProvider === "";
872872

873-
// Only keep a cached custom browse config if there is an emptry configuration,
873+
// Only keep a cached custom browse config if there is an empty configuration,
874874
// or if a specified provider ID has not changed.
875875
let keepCachedBrowseConfig: boolean = true;
876876
if (hasEmptyConfiguration) {

Extension/src/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1146,7 +1146,7 @@ export function getLocalizedString(params: LocalizeStringParams): string {
11461146
export function getLocalizedSymbolScope(scope: string, detail: string): string {
11471147
return localize({
11481148
key: "c.cpp.symbolscope.separator", comment:
1149-
["{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\""]
1149+
["{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\""]
11501150
}, "{0}, {1}", scope, detail);
11511151
}
11521152

0 commit comments

Comments
 (0)