Wording changes

This commit is contained in:
Tom Sherman 2019-03-12 12:39:41 +00:00
parent bb16265e48
commit 39037cb258
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ function chalkFactory(options) {
Object.setPrototypeOf(chalk.template, chalk);
chalk.template.constructor = () => {
throw new Error('Chalk.constructor() is deprecated. Use new Chalk.Instance() instead.');
throw new Error('`chalk.constructor()` is deprecated. Use `new chalk.Instance()` instead.');
};
chalk.template.Instance = ChalkClass;