Skip to content

Commit 371dcd5

Browse files
authored
chore(curriculum): fixed misspelled variable names (freeCodeCamp#60789)
1 parent a350805 commit 371dcd5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-strong-tag-to-make-text-bold.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ assert.lengthOf(document.querySelectorAll('strong'),1);
2626
The `strong` tag should be inside the `p` tag.
2727

2828
```js
29-
const pargraphElement = document.querySelector('p');
30-
const pargraphChildren = pargraphElement?.querySelectorAll(`:scope ${'strong'}`);
31-
assert.lengthOf(pargraphChildren, 1);
29+
const paragraphElement = document.querySelector('p');
30+
const paragraphChildren = paragraphElement?.querySelectorAll(`:scope ${'strong'}`);
31+
assert.lengthOf(paragraphChildren, 1);
3232
```
3333
3434
The `strong` tag should wrap around the words `Stanford University`.

0 commit comments

Comments
 (0)