diff --git a/curriculum/challenges/english/25-front-end-development/workshop-hotel-feedback-form/66a9689b1bf24b7750898a1b.md b/curriculum/challenges/english/25-front-end-development/workshop-hotel-feedback-form/66a9689b1bf24b7750898a1b.md index 7aba844481c..337057dd865 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-hotel-feedback-form/66a9689b1bf24b7750898a1b.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-hotel-feedback-form/66a9689b1bf24b7750898a1b.md @@ -33,7 +33,7 @@ You should have a fifth checkbox `input`. assert(document.querySelector("fieldset:nth-of-type(3) input:nth-of-type(5)[type='checkbox']")); ``` -You should have an checkbox input with an `id` of `"price"`. +You should have a checkbox input with an `id` of `"price"`. ```js assert.strictEqual(document.querySelectorAll("fieldset:nth-of-type(3) input[type='checkbox']")[4].getAttribute('id'), 'price'); diff --git a/curriculum/challenges/english/25-front-end-development/workshop-hotel-feedback-form/66ad24c7eb8c121000c603a6.md b/curriculum/challenges/english/25-front-end-development/workshop-hotel-feedback-form/66ad24c7eb8c121000c603a6.md index a07b020c631..3d672e4bfa4 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-hotel-feedback-form/66ad24c7eb8c121000c603a6.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-hotel-feedback-form/66ad24c7eb8c121000c603a6.md @@ -7,7 +7,7 @@ dashedName: step-24 # --description-- -To make an checkbox input checked by default, you can add the `checked` attribute. +To make a checkbox input checked by default, you can add the `checked` attribute. Here is an example of using the `checked` attribute: