From 4401effea3fe6354ca83a29feb2d3eab633aa5cf Mon Sep 17 00:00:00 2001 From: Saurav <144879708+saurav-sinha-3141@users.noreply.github.com> Date: Mon, 23 Dec 2024 01:13:43 +0530 Subject: [PATCH] fix(curriculum): correct typo from 'cick' to 'click' (#57693) --- .../workshop-storytelling-app/671fafbae959c048d82bac8d.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fafbae959c048d82bac8d.md b/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fafbae959c048d82bac8d.md index 20c18286dd8..7f64e27ea2a 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fafbae959c048d82bac8d.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fafbae959c048d82bac8d.md @@ -13,7 +13,7 @@ With this, you have successfully completed the workshop. # --hints-- -When you cick the `scaryStoryBtn`, the `result` paragraph should display the scary story `"In the dark woods, a group of friends stumbled upon an old, abandoned cabin. They enter the cabin and awaken something malevolent that had been dormant for centuries."` with a border color of `#ee4b2b`. +When you click the `scaryStoryBtn`, the `result` paragraph should display the scary story `"In the dark woods, a group of friends stumbled upon an old, abandoned cabin. They enter the cabin and awaken something malevolent that had been dormant for centuries."` with a border color of `#ee4b2b`. ```js scaryStoryBtn.click(); @@ -36,7 +36,7 @@ assert.equal(hexColor.toLowerCase(), "#ee4b2b"); assert.equal(result.textContent.replace(/\s+/g, ' '), expectedStory); ``` -When you cick the `funnyStoryBtn`, the `result` paragraph should display the funny story with a border color of `#f1be32`. +When you click the `funnyStoryBtn`, the `result` paragraph should display the funny story with a border color of `#f1be32`. ```js funnyStoryBtn.click(); @@ -59,7 +59,7 @@ assert.equal(hexColor.toLowerCase(), "#f1be32"); assert.equal(result.textContent.replace(/\s+/g, ' '), expectedFunnyStory); ``` -When you cick the `adventureStoryBtn`, the `result` paragraph should display the adventure story with a border color of `#acd157`. +When you click the `adventureStoryBtn`, the `result` paragraph should display the adventure story with a border color of `#acd157`. ```js adventureStoryBtn.click();