fix(curriculum): remove comment element from challenge (#58985)
Some checks failed
i18n - Build Validation / Validate i18n Builds (20.x) (push) Has been cancelled
CI - Node.js / Lint (20.x) (push) Has been cancelled
CI - Node.js / Build (20.x) (push) Has been cancelled
CI - Node.js / Test (20.x) (push) Has been cancelled
CI - Node.js / Test - Upcoming Changes (20.x) (push) Has been cancelled
CI - Node.js / Test - i18n (italian, 20.x) (push) Has been cancelled
CI - Node.js / Test - i18n (portuguese, 20.x) (push) Has been cancelled
i18n - Download Client UI / Client (push) Has been cancelled

This commit is contained in:
Supravisor 2025-02-28 20:13:30 +13:00 committed by GitHub
parent 08e820c8b1
commit 1d30e1a473
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,7 +18,7 @@ The `section` element is used to define sections in a document, such as chapters
</section>
```
Take your `h2`, comment, `p`, and anchor (`a`) elements and nest them in a `section` element.
Take your `h2`, `p`, and anchor (`a`) elements and nest them in a `section` element.
# --hints--
@ -40,7 +40,7 @@ The entire `section` element should be between the opening and closing tags of t
assert(document.querySelector('section').parentNode.nodeName === 'MAIN');
```
The existing `h2`, comment, two `p` elements, and anchor (`a`) element should be between the opening and closing tags of the `section` element.
The existing `h2`, two `p` elements, and anchor (`a`) element should be between the opening and closing tags of the `section` element.
```js
const childrenOfSection = [...document.querySelector('section').childNodes];