Skip to content

Commit a8c678b

Browse files
authored
Merge pull request #468 from Adeel-Charolia/patch-3
Typo in "Bubbling and Capturing" Article
2 parents dadcf04 + 59223f7 commit a8c678b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

2-ui/2-events/02-bubbling-and-capturing/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Let's see it in action:
173173

174174
The code sets click handlers on *every* element in the document to see which ones are working.
175175

176-
If you click on `<td>`, then the sequence is:
176+
If you click on `<p>`, then the sequence is:
177177

178178
1. `HTML` -> `BODY` -> `FORM` -> `DIV` -> `P` (capturing phase, the first listener), and then:
179179
2. `P` -> `DIV` -> `FORM` -> `BODY` -> `HTML` (bubbling phase, the second listener).

0 commit comments

Comments
 (0)