Skip to content

Commit 0994854

Browse files
authored
Merge pull request microsoft#80801 from orta/capital_S
Fixes some capital S typoes with JS/TS
2 parents 57f4855 + a89b72b commit 0994854

5 files changed

Lines changed: 7 additions & 5 deletions

File tree

extensions/json/syntaxes/JSON.tmLanguage.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"Once accepted there, we are happy to receive an update request."
66
],
77
"version": "https://github.com/Microsoft/vscode-JSON.tmLanguage/commit/9bd83f1c252b375e957203f21793316203f61f70",
8-
"name": "JSON (Javascript Next)",
8+
"name": "JSON (JavaScript Next)",
99
"scopeName": "source.json",
1010
"patterns": [
1111
{
@@ -210,4 +210,4 @@
210210
]
211211
}
212212
}
213-
}
213+
}

extensions/typescript-language-features/package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"typescript.tsdk.desc": "Specifies the folder path containing the tsserver and lib*.d.ts files to use.",
88
"typescript.disableAutomaticTypeAcquisition": "Disables automatic type acquisition. Automatic type acquisition fetches `@types` packages from npm to improve IntelliSense for external libraries.",
99
"typescript.tsserver.log": "Enables logging of the TS server to a file. This log can be used to diagnose TS Server issues. The log may contain file paths, source code, and other potentially sensitive information from your project.",
10-
"typescript.tsserver.pluginPaths": "Additional paths to discover Typescript Language Service plugins. Requires using TypeScript 2.3.0 or newer in the workspace.",
10+
"typescript.tsserver.pluginPaths": "Additional paths to discover TypeScript Language Service plugins. Requires using TypeScript 2.3.0 or newer in the workspace.",
1111
"typescript.tsserver.pluginPaths.item": "Either an absolute or relative path. Relative path will be resolved against workspace folder(s).",
1212
"typescript.tsserver.trace": "Enables tracing of messages sent to the TS server. This trace can be used to diagnose TS Server issues. The trace may contain file paths, source code, and other potentially sensitive information from your project.",
1313
"typescript.validate.enable": "Enable/disable TypeScript validation.",

extensions/typescript-language-features/src/features/task.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export default class TscTaskProvider implements vscode.TaskProvider {
7575
const badTsconfig = /\\tsconfig.*\.json/;
7676
if (badTsconfig.exec(definition.tsconfig) !== null) {
7777
// Warn that the task has the wrong slash type
78-
vscode.window.showWarningMessage(localize('badTsConfig', "Typescript Task in tasks.json contains \"\\\\\". Typescript tasks tsconfig must use \"/\""));
78+
vscode.window.showWarningMessage(localize('badTsConfig', "TypeScript Task in tasks.json contains \"\\\\\". TypeScript tasks tsconfig must use \"/\""));
7979
return undefined;
8080
}
8181

src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function onReady() {
107107
});
108108
};
109109

110-
// We recevied a valid nlsConfig from a user defined locale
110+
// We received a valid nlsConfig from a user defined locale
111111
if (nlsConfig) {
112112
startup(nlsConfig);
113113
}

src/vs/workbench/contrib/preferences/browser/settingsLayout.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,3 +223,5 @@ export const knownAcronyms = new Set<string>();
223223
export const knownTermMappings = new Map<string, string>();
224224
knownTermMappings.set('power shell', 'PowerShell');
225225
knownTermMappings.set('powershell', 'PowerShell');
226+
knownTermMappings.set('javascript', 'JavaScript');
227+
knownTermMappings.set('typescript', 'TypeScript');

0 commit comments

Comments
 (0)