Skip to content

Commit a924764

Browse files
Grammatical error fixed.
Co-authored-by: Zach Meyer <[email protected]>
1 parent a416cdd commit a924764

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

foundations/javascript_basics/DOM_manipulation_and_events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This section contains a general overview of topics that you will learn in this l
1515

1616
### Document Object Model
1717

18-
The DOM (or Document Object Model) is a tree-like representation of the contents of a webpage - a tree of "nodes" with different relationships depending on how they're arranged in the HTML document. There are many types of node, most of which are not commonly used. In this lesson we will be focusing on "element" nodes which are primarily used for manipulating the DOM.
18+
The DOM (or Document Object Model) is a tree-like representation of the contents of a webpage - a tree of "nodes" with different relationships depending on how they're arranged in the HTML document. There are many types of nodes, most of which are not commonly used. In this lesson we will be focusing on "element" nodes which are primarily used for manipulating the DOM.
1919

2020
```html
2121
<div id="container">

0 commit comments

Comments
 (0)