From cfb455230fa41f39d9e6bd56aa3261ac7bb31e1f Mon Sep 17 00:00:00 2001 From: Tim Scott Date: Fri, 31 Aug 2018 14:56:07 +0100 Subject: [PATCH] Fixed typo Fixed a grammatical error at the top of the article. --- 2-ui/2-events/02-bubbling-and-capturing/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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