mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-22 21:08:12 +08:00
fix(curriculum): corrected typo in hint text (#62124)
This commit is contained in:
parent
000b8f3d7a
commit
8476761422
@ -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");
|
||||
|
||||
@ -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);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user