Fix typo in README: s/console.err/console.error (#1772)

This commit is contained in:
Mohsen Azimi 2017-02-23 18:51:22 -08:00 коммит произвёл Paul Irish
Родитель dbb32c994f
Коммит ce1699eff1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -139,7 +139,7 @@ function launchChromeAndRunLighthouse(url, flags, config) {
// Kill Chrome if there's an error.
return launcher.kill().then(() => {
throw err;
}, console.err);
}, console.error);
});
}