From bc7d3241c8f491a3f500aa351761684e585e6f35 Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Sun, 8 Nov 2015 10:45:52 -0800 Subject: [PATCH] (docs) template-syntax fix typo closes #354 --- 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 c70265cb43..5cadded532 100644 --- a/public/docs/ts/latest/guide/template-syntax.jade +++ b/public/docs/ts/latest/guide/template-syntax.jade @@ -1170,7 +1170,7 @@ code-example(format="" language="html"). Therefore `HeroDetail.hero` is an ***input*** property from the perspective of `HeroDetail`. **Events stream *out* of the `HeroDetail.deleted` target property** (which is an `EventEmitter`) and toward the receiver within the template expression. - Therefore `HeroDetail.hero` is an ***output*** property from the perspective of `HeroDetail`. + Therefore `HeroDetail.deleted` is an ***output*** property from the perspective of `HeroDetail`. When we peek inside `HeroDetailComponent` we see that these properties are marked with decorators as input and output properties.