Fix typo (I think)

This commit is contained in:
Eduardo 2020-10-19 16:30:23 -04:00 committed by Eduardo Thomas
parent 7d05adac56
commit ad3a7cc6f3

View file

@ -5,7 +5,7 @@ Capturing and bubbling allow us to implement one of most powerful event handling
The idea is that if we have a lot of elements handled in a similar way, then instead of assigning a handler to each of them -- we put a single handler on their common ancestor.
In the handler we get `event.target`, see where the event actually happened and handle it.
In the handler we get `event.target` to see where the event actually happened and handle it.
Let's see an example -- the [Ba-Gua diagram](http://en.wikipedia.org/wiki/Ba_gua) reflecting the ancient Chinese philosophy.