From 84767614222bae2f7c2fdefe12346d9fa1a10fc6 Mon Sep 17 00:00:00 2001 From: Ariz Faiyaz Date: Wed, 10 Sep 2025 15:23:01 +0530 Subject: [PATCH] fix(curriculum): corrected typo in hint text (#62124) --- .../blocks/lab-lightbox-viewer/66db57ad34c7089b9b41bfd6.md | 4 ++-- .../workshop-hotel-feedback-form/66a9577022877d72d8f43b4f.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/english/blocks/lab-lightbox-viewer/66db57ad34c7089b9b41bfd6.md b/curriculum/challenges/english/blocks/lab-lightbox-viewer/66db57ad34c7089b9b41bfd6.md index e77cba3a143..ee1e1268023 100644 --- a/curriculum/challenges/english/blocks/lab-lightbox-viewer/66db57ad34c7089b9b41bfd6.md +++ b/curriculum/challenges/english/blocks/lab-lightbox-viewer/66db57ad34c7089b9b41bfd6.md @@ -70,7 +70,7 @@ for (let image of images) { assert.strictEqual(srcCount, 1); ``` -Within the `.gallery` element, you should an `img` element with the `src` set to `https://cdn.freecodecamp.org/curriculum/labs/storm-thumbnail.jpg`. +Within the `.gallery` element, you should have an `img` element with the `src` set to `https://cdn.freecodecamp.org/curriculum/labs/storm-thumbnail.jpg`. ```js const images = document.querySelectorAll(".gallery .gallery-item"); @@ -86,7 +86,7 @@ for (let image of images) { assert.strictEqual(srcCount, 1); ``` -Within the `.gallery` element, you should an `img` element with the `src` set to `https://cdn.freecodecamp.org/curriculum/labs/trees-thumbnail.jpg`. +Within the `.gallery` element, you should have an `img` element with the `src` set to `https://cdn.freecodecamp.org/curriculum/labs/trees-thumbnail.jpg`. ```js const images = document.querySelectorAll(".gallery .gallery-item"); diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9577022877d72d8f43b4f.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9577022877d72d8f43b4f.md index 47fb30188f8..fc0e4bc1027 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9577022877d72d8f43b4f.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9577022877d72d8f43b4f.md @@ -15,7 +15,7 @@ Inside the `fieldset` element, add a `legend` element with the text `Why did you # --hints-- -You should a `fieldset` element. +You should have a `fieldset` element. ```js assert.lengthOf(document.querySelectorAll('fieldset'), 3);