From 83301376c9c1ace26ee19440c58c17c586065fae Mon Sep 17 00:00:00 2001 From: Ajay Bains Date: Sat, 11 Jan 2025 16:34:45 +0530 Subject: [PATCH] docs: Updated a string in array of code example --- .../command-line/output-to-the-command-line-using-nodejs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' ); ```