Skip to content

Commit

Permalink
final rewording
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbrow committed Sep 8, 2023
1 parent 45b4cea commit 7415ab6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Extension/src/LanguageServer/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ async function installCompiler(sender?: any): Promise<void> {
break;
case "darwin": {
const title = localize('install.compiler.mac.title', 'The clang compiler will now be installed');
const detail = localize('install.compiler.mac.detail', 'You may be prompted to type your password to authorize the installation in the VS Code terminal window.');
const detail = localize('install.compiler.mac.detail', 'You may be prompted to type your password in the VS Code terminal window to authorize the installation.');
const response = await vscode.window.showInformationMessage(title, { modal: true, detail }, ok);
if (response === ok) {
const terminal = vscode.window.createTerminal('Install C++ Compiler');
Expand Down Expand Up @@ -585,7 +585,7 @@ async function installCompiler(sender?: any): Promise<void> {
})();
if (installCommand) {
const title = localize('install.compiler.linux.title', 'The gcc compiler will now be installed');
const detail = localize('install.compiler.linux.detail', 'You may be prompted to type your password to authorize the installation in the VS Code terminal window.');
const detail = localize('install.compiler.linux.detail', 'You may be prompted to type your password in the VS Code terminal window to authorize the installation.');
const response = await vscode.window.showInformationMessage(title, { modal: true, detail }, ok);
if (response === ok) {
const terminal = vscode.window.createTerminal('Install C++ Compiler');
Expand Down

0 comments on commit 7415ab6

Please sign in to comment.