fix(curriculum): corrected typo in hint text (#62124)

This commit is contained in:
Ariz Faiyaz 2025-09-10 15:23:01 +05:30 committed by GitHub
parent 000b8f3d7a
commit 8476761422
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

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

View File

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