From b7d685b4ecbd38dda1051feabcfd05783d69fc6f Mon Sep 17 00:00:00 2001 From: Franco Montenegro Date: Fri, 18 Feb 2022 21:57:48 -0300 Subject: [PATCH] Remove trailing spaces from comments. --- electron/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electron/index.js b/electron/index.js index 763206508..182a2d4f9 100644 --- a/electron/index.js +++ b/electron/index.js @@ -350,7 +350,7 @@ autoUpdater.on('update-not-available', () => { ipcMain.on('autoUpdateAccepted', () => { appState.autoUpdateAccepted = true; - // quitAndInstall can only be called if the + // quitAndInstall can only be called if the // update has been downloaded. Since the user // can disable auto updates, we have to make // sure it has been downloaded first. @@ -362,7 +362,7 @@ ipcMain.on('autoUpdateAccepted', () => { // If the update hasn't been downloaded, // start downloading it. After it's done, the // event 'update-downloaded' will be triggered, - // where we will be able to resume the + // where we will be able to resume the // update installation. autoUpdater.downloadUpdate(); });