mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-04 17:01:16 -05:00
fix(curriculum): correct typo from 'cick' to 'click' (#57693)
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user