From bc2796321605e22dd0cf750f73bb87f7ddfc8582 Mon Sep 17 00:00:00 2001 From: Gagan Bhullar Date: Sat, 20 Jul 2024 22:24:23 -0600 Subject: [PATCH] fix(curriculum): dice game - step 9 - Update hint text (#55565) --- .../657d3ab710745d17697c633a.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/review-algorithmic-thinking-by-building-a-dice-game/657d3ab710745d17697c633a.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/review-algorithmic-thinking-by-building-a-dice-game/657d3ab710745d17697c633a.md index 088fc182614..93303d571ff 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/review-algorithmic-thinking-by-building-a-dice-game/657d3ab710745d17697c633a.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/review-algorithmic-thinking-by-building-a-dice-game/657d3ab710745d17697c633a.md @@ -43,7 +43,7 @@ updateScore(10, "hi"); assert.strictEqual(scoreHistory.children.length, 1); ``` -When `updateScore(10, "hi")` is called, your new list element should have the text `hi: 10`. +When `updateScore(10, "hi")` is called, your new list element should have the text `hi : 10`. ```js scoreHistory.innerHTML = "";