From 68fbb3619a153bd52e12b4cb7be88b891ffc4407 Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Fri, 17 Mar 2017 11:15:39 -0400 Subject: [PATCH] Camel case some parameters referenced in messages --- test/mac.js | 2 +- win32.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/mac.js b/test/mac.js index 1a97cbe8..a235ab97 100644 --- a/test/mac.js +++ b/test/mac.js @@ -472,7 +472,7 @@ function createAppHumanReadableCopyrightTest (baseOpts, humanReadableCopyright) fs.readFile(plistPath, 'utf8', cb) }, function (file, cb) { var obj = plist.parse(file) - t.equal(obj.NSHumanReadableCopyright, opts.appCopyright, 'NSHumanReadableCopyright should reflect opts["app-copyright"]') + t.equal(obj.NSHumanReadableCopyright, opts.appCopyright, 'NSHumanReadableCopyright should reflect opts.appCopyright') cb() } ], function (err) { diff --git a/win32.js b/win32.js index dfa0e633..0efc30b8 100644 --- a/win32.js +++ b/win32.js @@ -28,7 +28,7 @@ function generateRceditOptionsSansIcon (opts) { function updateWineMissingException (err) { if (err && err.code === 'ENOENT' && err.syscall === 'spawn wine') { err.message = 'Could not find "wine" on your system.\n\n' + - 'Wine is required to use the app-copyright, app-version, build-version, icon, and \n' + + 'Wine is required to use the appCopyright, appVersion, buildVersion, icon, and \n' + 'win32metadata parameters for Windows targets.\n\n' + 'Make sure that the "wine" executable is in your PATH.\n\n' + 'See https://github.com/electron-userland/electron-packager#building-windows-apps-from-non-windows-platforms for details.'