Skip to content

Commit

Permalink
Fix usage example in the readme (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
apsknight authored and sindresorhus committed Feb 11, 2018
1 parent 6554030 commit 011dd04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readme.md
Expand Up @@ -51,7 +51,7 @@ const chalk = require('chalk');
const log = console.log;

// Combine styled and normal strings
log(chalk.blue('Hello') + 'World' + chalk.red('!'));
log(chalk.blue('Hello') + ' World' + chalk.red('!'));

// Compose multiple styles using the chainable API
log(chalk.blue.bgRed.bold('Hello world!'));
Expand Down

0 comments on commit 011dd04

Please sign in to comment.