From 288a008e727fd67c1be1d6dcbfd3e30654d6d049 Mon Sep 17 00:00:00 2001 From: Rohith Dharavath Date: Thu, 21 Apr 2022 01:53:22 +0530 Subject: [PATCH] Update electron.js corrected spelling mistake --- js/electron.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/electron.js b/js/electron.js index 7ecb97e0..ffa48e6a 100644 --- a/js/electron.js +++ b/js/electron.js @@ -8,7 +8,7 @@ const Log = require("logger"); let config = process.env.config ? JSON.parse(process.env.config) : {}; // Module to control application life. const app = electron.app; -// If ELECTRON_DISABLE_GPU is set electron is startet with --disable-gpu flag. +// If ELECTRON_DISABLE_GPU is set electron is started with --disable-gpu flag. // See https://www.electronjs.org/docs/latest/tutorial/offscreen-rendering for more info. if (process.env.ELECTRON_DISABLE_GPU !== undefined) { app.disableHardwareAcceleration();