diff --git a/apps/site/pages/en/learn/command-line/output-to-the-command-line-using-nodejs.md b/apps/site/pages/en/learn/command-line/output-to-the-command-line-using-nodejs.md index 6362249f7ece9..b1baee2cf9168 100644 --- a/apps/site/pages/en/learn/command-line/output-to-the-command-line-using-nodejs.md +++ b/apps/site/pages/en/learn/command-line/output-to-the-command-line-using-nodejs.md @@ -191,7 +191,7 @@ Then, you can use it to style your text: ```js console.log( styleText(['red'], 'This is red text ') + - styleText(['green, bold'], 'and this is green bold text ') + + styleText(['green', 'bold'], 'and this is green bold text ') + 'this is normal text' ); ```