From eec5c00fc06f6a38e9d2afb6ec926f571add507e Mon Sep 17 00:00:00 2001 From: dreambo8563 Date: Fri, 13 May 2016 12:37:24 +0800 Subject: [PATCH] docs(component-communication): remove _ from private _timerComponent --- public/docs/ts/latest/cookbook/component-communication.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/cookbook/component-communication.jade b/public/docs/ts/latest/cookbook/component-communication.jade index c9e9c91748..64f51bf009 100644 --- a/public/docs/ts/latest/cookbook/component-communication.jade +++ b/public/docs/ts/latest/cookbook/component-communication.jade @@ -252,7 +252,7 @@ a(id="countdown-tests") We import references to the `ViewChild` decorator and the `AfterViewInit` lifecycle hook. - We inject the child `CountdownTimerComponent` into the private `_timerComponent` property + We inject the child `CountdownTimerComponent` into the private `timerComponent` property via the `@ViewChild` property decoration. The `#timer` local variable is gone from the component metadata.