From 3fa68cd7ac529c840e0add6d602090d25fd405fa Mon Sep 17 00:00:00 2001 From: Kathy Walrath Date: Tue, 6 Sep 2016 10:33:13 -0700 Subject: [PATCH] docs(template-syntax): delete a single character --- public/docs/ts/latest/guide/template-syntax.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/template-syntax.jade b/public/docs/ts/latest/guide/template-syntax.jade index aad1915f73..5c3a5ce1fc 100644 --- a/public/docs/ts/latest/guide/template-syntax.jade +++ b/public/docs/ts/latest/guide/template-syntax.jade @@ -781,7 +781,7 @@ block style-property-name-dart-diff Directives typically raise custom events with an Angular [EventEmitter](../api/core/index/EventEmitter-class.html). The directive creates an `EventEmitter` and exposes it as a property. - The directives calls `EventEmitter.emit(payload)` to fire an event, passing in a message payload, which can be anything. + The directive calls `EventEmitter.emit(payload)` to fire an event, passing in a message payload, which can be anything. Parent directives listen for the event by binding to this property and accessing the payload through the `$event` object. Consider a `HeroDetailComponent` that presents hero information and responds to user actions.