chore(downloader): fix typo in error exception message (#1076)

This commit is contained in:
Sashiyama Yoshiki 2017-10-18 13:33:16 +09:00 committed by Andrey Lushnikov
parent b3857bd690
commit eee168a745

View File

@ -146,7 +146,7 @@ module.exports = {
else if (platform === 'win32' || platform === 'win64')
executablePath = path.join(folderPath, 'chrome-win32', 'chrome.exe');
else
throw 'Unsupported platfrom: ' + platform;
throw 'Unsupported platform: ' + platform;
return {
executablePath,
folderPath,