From 1d30e1a473805546b4e7ac44383da020f88e9928 Mon Sep 17 00:00:00 2001 From: Supravisor <153783117+Supravisor@users.noreply.github.com> Date: Fri, 28 Feb 2025 20:13:30 +1300 Subject: [PATCH] fix(curriculum): remove comment element from challenge (#58985) --- .../5f07be6ef7412fbad0c5626b.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f07be6ef7412fbad0c5626b.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f07be6ef7412fbad0c5626b.md index 1b7c5b36f34..af5eee8d7ac 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f07be6ef7412fbad0c5626b.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f07be6ef7412fbad0c5626b.md @@ -18,7 +18,7 @@ The `section` element is used to define sections in a document, such as chapters ``` -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];