Skip to content

Commit

Permalink
Fixes typo in first exercise instructions (epicweb-dev#14)
Browse files Browse the repository at this point in the history
In the instructions for inserting the text it specifies the use of
`div.textConent` when it should be `div.textContent`
  • Loading branch information
belcherj authored Mar 24, 2020
1 parent 264a683 commit 2a694f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exercise/01.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<!-- 💰 document.createElement('div')) -->

<!-- 🐨 Set the div's textContent to 'Hello World' and className to 'container' -->
<!-- 💰 div.textConent = '...' -->
<!-- 💰 div.textContent = '...' -->

<!-- 🐨 Append the div to the root div using `append` -->
<!-- 💰 document.getElementById('root') -->
Expand Down

0 comments on commit 2a694f0

Please sign in to comment.