Skip to content

Commit ecefeb8

Browse files
Greg Van LiewBenjamin Pasero
authored andcommitted
Use VS Code, with a space (microsoft#83370)
1 parent c7e72d7 commit ecefeb8

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/main.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ function createDefaultArgvConfigSync(argvConfigPath) {
214214

215215
// Default argv content
216216
const defaultArgvConfigContent = [
217-
'// This configuration file allows to pass permanent command line arguments to VSCode.',
217+
'// This configuration file allows you to pass permanent command line arguments to VS Code.',
218218
'// Only a subset of arguments is currently supported to reduce the likelyhood of breaking',
219219
'// the installation.',
220220
'//',
@@ -224,14 +224,14 @@ function createDefaultArgvConfigSync(argvConfigPath) {
224224
'// it in the JSON below with a value of \'true\'. Otherwise, put the value',
225225
'// directly.',
226226
'//',
227-
'// If you see rendering issues in VSCode and have a better experience',
227+
'// If you see rendering issues in VS Code and have a better experience',
228228
'// with software rendering, you can configure this by adding:',
229229
'//',
230230
'// \'disable-hardware-acceleration\': true',
231231
'//',
232-
'// NOTE: Changing this file requires a restart of VSCode.',
232+
'// NOTE: Changing this file requires a restart of VS Code.',
233233
'{',
234-
' // Enabled by default by VSCode to resolve color issues in the renderer',
234+
' // Enabled by default by VS Code to resolve color issues in the renderer',
235235
' // See https://github.com/Microsoft/vscode/issues/51791 for details',
236236
' "disable-color-correct-rendering": true'
237237
];
@@ -240,7 +240,7 @@ function createDefaultArgvConfigSync(argvConfigPath) {
240240
defaultArgvConfigContent[defaultArgvConfigContent.length - 1] = `${defaultArgvConfigContent[defaultArgvConfigContent.length - 1]},`; // append trailing ","
241241

242242
defaultArgvConfigContent.push('');
243-
defaultArgvConfigContent.push(' // Display language of VSCode');
243+
defaultArgvConfigContent.push(' // Display language of VS Code');
244244
defaultArgvConfigContent.push(` "locale": "${legacyLocale}"`);
245245
}
246246

0 commit comments

Comments
 (0)