From fa2a0681b4edc87e772daf75723bda6f72d3dbb1 Mon Sep 17 00:00:00 2001 From: Shekhar Sahu <93962676+ShekharSahu404@users.noreply.github.com> Date: Fri, 29 Dec 2023 10:48:54 +0530 Subject: [PATCH] fix(curriculum): added the missing backticks (#52804) --- .../62a7c071219da921758a35bb.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a7c071219da921758a35bb.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a7c071219da921758a35bb.md index b804c34ed29..8d2c7ff50b9 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a7c071219da921758a35bb.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a7c071219da921758a35bb.md @@ -9,7 +9,7 @@ dashedName: step-49 In your `goTown` function, change your `button` elements' `innerText` properties to be `Go to store`, `Go to cave`, and `Fight dragon`. Update your `onclick` properties to be `goStore`, `goCave`, and `fightDragon`, respectively. -Finally, update your text's `innerText` property to be `You are in the town square. You see a sign that says Store.`. +Finally, update `innerText` property of your `text` to be `You are in the town square. You see a sign that says Store.`. # --hints--