about summary refs log tree commit diff
path: root/editors/code/src
diff options
context:
space:
mode:
authorVeetaha <veetaha2@gmail.com>2020-03-16 12:18:30 +0200
committerGitHub <noreply@github.com>2020-03-16 12:18:30 +0200
commitfc47274541b5f4e9c8406c4dd401392129845396 (patch)
tree3b8dc93a3864ea1aad34672afc69108c5760a2e0 /editors/code/src
parentd38d59fed810e702d7473cbb8485b26f921889c6 (diff)
downloadrust-fc47274541b5f4e9c8406c4dd401392129845396.tar.gz
rust-fc47274541b5f4e9c8406c4dd401392129845396.zip
vscode-postrefactor: fix syntax error
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/installation/extension.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/installation/extension.ts b/editors/code/src/installation/extension.ts
index e0aa5317d77..eea6fded237 100644
--- a/editors/code/src/installation/extension.ts
+++ b/editors/code/src/installation/extension.ts
@@ -112,7 +112,7 @@ async function askToDownloadProperExtensionVersion(config: Config, reason = "")
 const tryDownloadNightlyExtension = notReentrant(async (
     config: Config,
     shouldDownload: (releaseInfo: ArtifactReleaseInfo) => boolean = () => true
-): Promise<never | void> {
+): Promise<never | void> => {
     const vsixSource = config.nightlyVsixSource;
     try {
         const releaseInfo = await fetchArtifactReleaseInfo(vsixSource.repo, vsixSource.file, vsixSource.tag);