Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Extension/src/LanguageServer/configurations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion Extension/src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down