From db55b0ba0f87f5bdaf3f18f34b4953344c5da78b Mon Sep 17 00:00:00 2001 From: Josue Igiraneza <88510074+IGIRANEZAJosue@users.noreply.github.com> Date: Mon, 10 Feb 2025 23:06:23 +0200 Subject: [PATCH] fix(curriculum): update hint text for steps 6 and 7 of greeting bot workshop (#58689) --- .../workshop-greeting-bot/66ad9c633fa26d3c1475eae3.md | 2 +- .../workshop-greeting-bot/66ada3f46945763dd97f43f8.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/25-front-end-development/workshop-greeting-bot/66ad9c633fa26d3c1475eae3.md b/curriculum/challenges/english/25-front-end-development/workshop-greeting-bot/66ad9c633fa26d3c1475eae3.md index 917aebbed25..3c3f034b18e 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-greeting-bot/66ad9c633fa26d3c1475eae3.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-greeting-bot/66ad9c633fa26d3c1475eae3.md @@ -13,7 +13,7 @@ Add another `console` statement to the code that logs the message `"Allow me to # --hints-- -You should have a `console` statement. +You should have a third `console.log()` statement in your code. ```js assert.lengthOf(__helpers.removeJSComments(code).match(/console\.log(.*)/g), 3); 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 e2898696f05..e4dfa86ee98 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 @@ -48,7 +48,7 @@ You should use string concatenation with the `+` operator to join the string `"M assert.equal(botIntroduction, "My name is teacherBot."); ``` -You should have a `console` statement in your code. +You should have a fourth `console.log()` statement in your code. ```js assert.lengthOf(__helpers.removeJSComments(code).match(/console\.log(.*)/g), 4);