From eee168a745c5a5cd4a0cdd91cc9ca06f518cf7c0 Mon Sep 17 00:00:00 2001 From: Sashiyama Yoshiki Date: Wed, 18 Oct 2017 13:33:16 +0900 Subject: [PATCH] chore(downloader): fix typo in error exception message (#1076) --- utils/ChromiumDownloader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/ChromiumDownloader.js b/utils/ChromiumDownloader.js index a0e6237a4b9..bf42e93d05c 100644 --- a/utils/ChromiumDownloader.js +++ b/utils/ChromiumDownloader.js @@ -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,