Skip to content

Commit

Permalink
fix(README): fix typo
Browse files Browse the repository at this point in the history
closes #76
  • Loading branch information
timkindberg committed Nov 12, 2015
1 parent f9826db commit e1fed23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,9 +247,9 @@ and here's where we call them in the component
}
```

Note there's two ways to trigger an event. We can simply trigger a DOM event as seen in `triggerEventNormally`. In this cause the event won't bubble up unless you tell it to.
Note there's two ways to trigger an event. We can simply trigger a DOM event as seen in `triggerEventNormally`. In this case the event won't bubble up unless you tell it to.

We can also use the new ng2 Event Emitter syntax, as seen in `triggerEventViaEventEmitter`. This uses the Rxjs Event Emitter to trigger the event.
We can also use the new ng2 Event Emitter syntax, as seen in `triggerEventViaEventEmitter`. This uses the Rxjs Event Emitter to trigger the event. These events never bubble.

## Bootstrapping Apps

Expand Down

0 comments on commit e1fed23

Please sign in to comment.