From 7f5a4c9ea027aa5156a9ee0b4bdbe2ba9d7cafeb Mon Sep 17 00:00:00 2001 From: Supravisor <153783117+Supravisor@users.noreply.github.com> Date: Wed, 16 Apr 2025 17:44:37 +1200 Subject: [PATCH] fix(curriculum): place comment below example in greeting bot workshop (#59734) --- .../workshop-greeting-bot/66ada3f46945763dd97f43f8.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/workshop-greeting-bot/66ada3f46945763dd97f43f8.md b/curriculum/challenges/english/25-front-end-development/workshop-greeting-bot/66ada3f46945763dd97f43f8.md index e4dfa86ee98..b202e399eb8 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-greeting-bot/66ada3f46945763dd97f43f8.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-greeting-bot/66ada3f46945763dd97f43f8.md @@ -14,8 +14,8 @@ In the lecture videos, you learned how to work with string concatenation using t ```js let firstName = "John"; -// result: "Hello, my name is John." "Hello, my name is " + firstName + "."; +// result: "Hello, my name is John." ``` Remember that you need to be mindful of spaces when concatenating strings with variables.