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.**