fix(misc) follow-up typos

Found via `codespell -q 3 -S ./lang`
This commit is contained in:
luz paz
2021-03-16 11:59:33 -04:00
committed by Saúl Ibarra Corretgé
parent 7933d4b4d6
commit d3680bbebd
105 changed files with 132 additions and 132 deletions

View File

@@ -251,7 +251,7 @@ function _setLogLevels(logger, config) {
// First, set the default log level.
logger.setLogLevel(config.defaultLogLevel);
// Second, set the log level of each logger explictly overriden by config.
// Second, set the log level of each logger explicitly overridden by config.
Object.keys(config).forEach(
id =>
id === 'defaultLogLevel' || logger.setLogLevelById(config[id], id));