From cbda4cf5c9fbbd811b0d1a4c74d39bc481400a2f Mon Sep 17 00:00:00 2001 From: Mukunda Rao Katta Date: Tue, 12 May 2026 01:23:40 -0700 Subject: [PATCH] fix(curriculum): clarify DOM element node wording (#67330) --- .../67336894ae148431a870694d.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-working-with-the-dom-click-events-and-web-apis/67336894ae148431a870694d.md b/curriculum/challenges/english/blocks/lecture-working-with-the-dom-click-events-and-web-apis/67336894ae148431a870694d.md index 17b0c62ddfa..60e82f03170 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-the-dom-click-events-and-web-apis/67336894ae148431a870694d.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-the-dom-click-events-and-web-apis/67336894ae148431a870694d.md @@ -11,7 +11,7 @@ Let's learn about the DOM and why it's so important for web development. DOM sta With the DOM, you can add, modify, or delete elements on a webpage. You can even make your website interactive by making elements listen to and respond to events. -In the DOM, an HTML document is represented as a tree of nodes. Each node represents an HTML element from the HTML document: +In the DOM, an HTML document is represented as a tree of nodes. Each element node represents an HTML element from the HTML document: ```html