diff --git a/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa1717ba9ea1a5fa028e0.md b/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa1717ba9ea1a5fa028e0.md index ed50dbacc63..ec2da9f54a4 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa1717ba9ea1a5fa028e0.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa1717ba9ea1a5fa028e0.md @@ -7,7 +7,7 @@ dashedName: step-2 # --description-- -Create a `main` element with a class of `story-container`. Inside the `story-container`, create a `div` with a class of `btn-container`. +Create a `main` element with a class of `story-container`. Inside the `.story-container` element, create a `div` with a class of `btn-container`. # --hints-- @@ -17,7 +17,7 @@ You should have a `main` element with a class of `story-container`. assert.exists(document.querySelector('main.story-container')); ``` -Inside the `story-container` element, you should have a `div` with a class of `btn-container`. +Inside the `.story-container` element, you should have a `div` with a class of `btn-container`. ```js assert.exists(document.querySelector('main.story-container div.btn-container')); diff --git a/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa22e99042b1e91fe9d2e.md b/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa22e99042b1e91fe9d2e.md index 139a5934b95..dbaaa80bafc 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa22e99042b1e91fe9d2e.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa22e99042b1e91fe9d2e.md @@ -11,7 +11,7 @@ Inside the `.btn-container` , create three buttons for each type of story. Give # --hints-- -Inside the `btn-container` div, you should have three buttons. +Inside the `.btn-container` element, you should have three buttons. ```js assert.lengthOf(document.querySelectorAll('.btn-container > button') ,3); diff --git a/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa47e415d88263d349a10.md b/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa47e415d88263d349a10.md index 12543b471eb..b305b452d7d 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa47e415d88263d349a10.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa47e415d88263d349a10.md @@ -17,7 +17,7 @@ You should create a `script` element. assert.lengthOf(document.querySelectorAll('script'), 3); ``` -Your `script` element should have an `src` attribute set to `script.js`. +Your `script` element should have a `src` attribute set to `script.js`. ```js const script = document.querySelector("script[data-src$='script.js']"); diff --git a/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa537114e412950b62089.md b/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa537114e412950b62089.md index 3e4cfb144b3..074d04d7017 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa537114e412950b62089.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa537114e412950b62089.md @@ -17,7 +17,7 @@ You should have a `storyContainer` variable. assert.isDefined(storyContainer); ``` -You should select the `div` with the class `story-container` using the `querySelector` method and store it in the `storyContainer` variable. +You should select the `.story-container` element using the `querySelector` method and store it in the `storyContainer` variable. ```js assert.deepEqual(storyContainer, document.querySelector(".story-container")); diff --git a/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa769540d152e53327f4b.md b/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa769540d152e53327f4b.md index 3eef8ac3e24..6a76ab4ec11 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa769540d152e53327f4b.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa769540d152e53327f4b.md @@ -18,7 +18,7 @@ assert.isDefined(scaryStoryBtn); assert.deepEqual(scaryStoryBtn, document.getElementById("scary-btn")); ``` -You should select the `#funny-btn` button using the `getElementById` method and store it in the `funnyStoryBtn` variable. +You should select the `#funny-btn` button using the `getElementById` method and store it in the `funnyStoryBtn` variable. ```js assert.isDefined(funnyStoryBtn);