From 2c2a24e6f05506492dd264a7d804a2d84404b247 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Pomajb=C3=ADk?=
<60559058+danipoma@users.noreply.github.com>
Date: Wed, 4 Jan 2023 15:36:37 +0100
Subject: [PATCH] Fixing typo in DOM section (#3138)
Treee -> Tree
---
.../content/103-javascript/101-learn-dom-manipulation.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/roadmaps/100-frontend/content/103-javascript/101-learn-dom-manipulation.md b/content/roadmaps/100-frontend/content/103-javascript/101-learn-dom-manipulation.md
index 3bb9d490a..a4d43e199 100644
--- a/content/roadmaps/100-frontend/content/103-javascript/101-learn-dom-manipulation.md
+++ b/content/roadmaps/100-frontend/content/103-javascript/101-learn-dom-manipulation.md
@@ -3,7 +3,7 @@
The Document Object Model (DOM) is a programming interface built for HTML and XML documents. It represents the page that allows programs and scripts to dynamically update the document structure, content, and style. With DOM, we can easily access and manipulate tags, IDs, classes, attributes, etc.
Free Content
-DOM Treee
+DOM Tree
GeeksForGeeks - DOM (Document Object Model)
What is the DOM?
Eloquent JavaScript, 3rd Edition: The Document Object Model