aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorMatthias Einwag <[email protected]>2020-09-23 16:14:18 +0100
committerGitHub <[email protected]>2020-09-23 16:14:18 +0100
commit87933e15ce3b7a603b6e28597cdc152669e90cca (patch)
tree7132fa75823067e89a9a6b4762604632904ca43e /editors
parent45de3e738c33e972540643f470d6163052219d84 (diff)
Apply suggestions from code review
Co-authored-by: Veetaha <[email protected]>
Diffstat (limited to 'editors')
-rw-r--r--editors/code/src/main.ts2
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 }, {