浏览代码

Fix typos on Event Handlers page (#1102)

* Fix typo on Event Handlers page

* Fix 2nd typo on Event Handlers page
Jon Earnshaw 2 年之前
父节点
当前提交
d596967b40
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/guide/src/en/interactivity/event_handlers.md

+ 1 - 1
docs/guide/src/en/interactivity/event_handlers.md

@@ -29,7 +29,7 @@ To learn what the different event types for HTML provide, read the [events modul
 
 Some events will trigger first on the element the event originated at upward. For example, a click event on a `button` inside a `div` would first trigger the button's event listener and then the div's event listener.
 
-> For more information about event propigation see [the mdn docs on event bubling](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/Events#event_bubbling)
+> For more information about event propagation see [the mdn docs on event bubbling](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/Events#event_bubbling)
 
 If you want to prevent this behavior, you can call `stop_propagation()` on the event: