Skip to content

Commit 5b08a6c

Browse files
authored
Fix missing spaces in update prompt (#671)
1 parent 8ef02e3 commit 5b08a6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vscode-wpilib/src/wpilibupdates.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export class WPILibUpdates {
4747
const persistentState = WPILibUpdates.getUpdatePersistentState(wp);
4848
if (newVersion !== undefined && persistentState.Value === false) {
4949
const result = await vscode.window.showInformationMessage
50-
(i18n('message', `This project is currently using WPILib version ({1}). Would you like to update the project` +
50+
(i18n('message', `This project is currently using WPILib version ({1}). Would you like to update the project ` +
5151
`to WPILib version {0}?`, newVersion, grVersion), {
5252
modal: true,
5353
}, i18n('ui', 'Yes'), i18n('ui', 'No'), i18n('ui', 'No, Don\'t ask again'));
@@ -78,7 +78,7 @@ export class WPILibUpdates {
7878
return false;
7979
} else {
8080
const result = await vscode.window.showInformationMessage
81-
(i18n('message', `This project is currently using WPILib version ({1}). Would you like to update the project` +
81+
(i18n('message', `This project is currently using WPILib version ({1}). Would you like to update the project ` +
8282
`to WPILib version {0}?`, newVersion.newVersion, grVersion), {
8383
modal: true,
8484
}, i18n('ui', 'Yes'), i18n('ui', 'No'));

0 commit comments

Comments
 (0)