Skip to content

Commit

Permalink
chore(downloader): fix typo in error exception message (puppeteer#1076)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sashiyama Yoshiki authored and aslushnikov committed Oct 18, 2017
1 parent b3857bd commit eee168a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/ChromiumDownloader.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit eee168a

Please sign in to comment.