fix(curriculum): correct typo from 'cick' to 'click' (#57693)

This commit is contained in:
Saurav
2024-12-23 01:13:43 +05:30
committed by GitHub
parent 0227d171a5
commit 4401effea3

View File

@@ -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();