From 9ff7e2d2e58df3e1c92f76ffedc91356ffd8cfce Mon Sep 17 00:00:00 2001 From: 1van0v Date: Mon, 15 Jul 2019 17:37:01 +0300 Subject: [PATCH] fix typo --- 8-web-components/7-shadow-dom-events/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/8-web-components/7-shadow-dom-events/article.md b/8-web-components/7-shadow-dom-events/article.md index 4199d104..d1f627e3 100644 --- a/8-web-components/7-shadow-dom-events/article.md +++ b/8-web-components/7-shadow-dom-events/article.md @@ -35,7 +35,7 @@ If you click on the button, the messages are: 1. Inner target: `BUTTON` -- internal event handler gets the correct target, the element inside shadow DOM. 2. Outer target: `USER-CARD` -- document event handler gets shadow host as the target. -Event retargeting is a great thing to have, because the outer document doesn't have no know about component internals. From its point of view, the event happened on ``. +Event retargeting is a great thing to have, because the outer document doesn't have to know about component internals. From its point of view, the event happened on ``. **Retargeting does not occur if the event occurs on a slotted element, that physically lives in the light DOM.**