diff options
author | Matthias Einwag <[email protected]> | 2020-09-23 16:14:18 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-09-23 16:14:18 +0100 |
commit | 87933e15ce3b7a603b6e28597cdc152669e90cca (patch) | |
tree | 7132fa75823067e89a9a6b4762604632904ca43e /editors/code | |
parent | 45de3e738c33e972540643f470d6163052219d84 (diff) |
Apply suggestions from code review
Co-authored-by: Veetaha <[email protected]>
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/src/main.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index 5a33b8fc2..72c545b3c 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts | |||
@@ -358,7 +358,7 @@ async function performDownloadWithRetryDialog<T>(downloadFunc: () => Promise<T>, | |||
358 | try { | 358 | try { |
359 | return await downloadFunc(); | 359 | return await downloadFunc(); |
360 | } catch (e) { | 360 | } catch (e) { |
361 | const selected = await vscode.window.showErrorMessage("Failed perform download: " + e.message, {}, { | 361 | const selected = await vscode.window.showErrorMessage("Failed to download: " + e.message, {}, { |
362 | title: "Update Github Auth Token", | 362 | title: "Update Github Auth Token", |
363 | updateToken: true, | 363 | updateToken: true, |
364 | }, { | 364 | }, { |