Skip to content

Commit 1d30e1a

Browse files
authored
fix(curriculum): remove comment element from challenge (freeCodeCamp#58985)
1 parent 08e820c commit 1d30e1a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f07be6ef7412fbad0c5626b.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The `section` element is used to define sections in a document, such as chapters
1818
</section>
1919
```
2020

21-
Take your `h2`, comment, `p`, and anchor (`a`) elements and nest them in a `section` element.
21+
Take your `h2`, `p`, and anchor (`a`) elements and nest them in a `section` element.
2222

2323
# --hints--
2424

@@ -40,7 +40,7 @@ The entire `section` element should be between the opening and closing tags of t
4040
assert(document.querySelector('section').parentNode.nodeName === 'MAIN');
4141
```
4242

43-
The existing `h2`, comment, two `p` elements, and anchor (`a`) element should be between the opening and closing tags of the `section` element.
43+
The existing `h2`, two `p` elements, and anchor (`a`) element should be between the opening and closing tags of the `section` element.
4444

4545
```js
4646
const childrenOfSection = [...document.querySelector('section').childNodes];

0 commit comments

Comments
 (0)