Skip to content

Commit 1533ad5

Browse files
committed
events/triggering-event-handlers.md: grammar fix by @jecoopr
Ref jquerygh-550
1 parent c3336e9 commit 1533ad5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

page/events/triggering-event-handlers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ $( "p" ).on( "click", foo );
6464
foo(); // instead of $( "p" ).trigger( "click" )
6565
```
6666

67-
A more complex architecture can built on top of trigger using the [publish-subscribe pattern](http://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern) using [jQuery plugins](https://gist.github.com/661855). With this technique, `.trigger()` can be used to notify other sections of code that an application specific event has happened.
67+
A more complex architecture can be built on top of trigger using the [publish-subscribe pattern](http://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern) using [jQuery plugins](https://gist.github.com/661855). With this technique, `.trigger()` can be used to notify other sections of code that an application specific event has happened.

0 commit comments

Comments
 (0)