Skip to content

Commit

Permalink
Merge pull request #10 from victorzchan/master
Browse files Browse the repository at this point in the history
Fixed typo in colors
  • Loading branch information
vctr-dev committed Mar 16, 2019
2 parents 1a520b9 + a99fec0 commit ec72ed8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/colors.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ module.exports = {
redText: chalk.red,
yellowText: chalk.yellow,
grayText: chalk.gray,
magnentaText: chalk.magnenta,
magentaText: chalk.magenta,
};
2 changes: 1 addition & 1 deletion lib/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function error(...msgs) {
}

function debug(...msgs) {
log(colors.magnentaText('debug'), ...msgs);
log(colors.magentaText('debug'), ...msgs);
}

function warning(...msgs) {
Expand Down

0 comments on commit ec72ed8

Please sign in to comment.