diff --git a/2-ui/2-events/02-bubbling-and-capturing/article.md b/2-ui/2-events/02-bubbling-and-capturing/article.md index bc5d70dc..04f2b87a 100644 --- a/2-ui/2-events/02-bubbling-and-capturing/article.md +++ b/2-ui/2-events/02-bubbling-and-capturing/article.md @@ -10,7 +10,7 @@ This handler is assigned to `
`, but also runs if you click any nested tag l
``` -Isn't it a bit strange? Why the handler on `
` runs if the actual click was on ``? +Isn't it a bit strange? Why does the handler on `
` run if the actual click was on ``? ## Bubbling @@ -18,7 +18,7 @@ The bubbling principle is simple. **When an event happens on an element, it first runs the handlers on it, then on its parent, then all the way up on other ancestors.** -Let's say, we have 3 nested elements `FORM > DIV > P` with a handler on each of them: +Let's say we have 3 nested elements `FORM > DIV > P` with a handler on each of them: ```html run autorun