diff options
-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 | }, { |