Browse Source

Merge pull request #6084 from wolfgang42/master

Fix typo: 'arugments'
Kevin Sawicki 8 years ago
parent
commit
64ae5cf5a1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/browser/api/auto-updater/squirrel-update-win.js

+ 1 - 1
lib/browser/api/auto-updater/squirrel-update-win.js

@@ -28,7 +28,7 @@ var spawnUpdate = function (args, detached, callback) {
     // Process spawned, different args:   Return with error
     // No process spawned:                Spawn new process
     if (spawnedProcess && !isSameArgs(args)) {
-      return callback('AutoUpdater process with arugments ' + args + ' is already running')
+      return callback('AutoUpdater process with arguments ' + args + ' is already running')
     } else if (!spawnedProcess) {
       spawnedProcess = spawn(updateExe, args, {
         detached: detached