From 43c9071a2e044889336cb442ff6a39124417e9ed Mon Sep 17 00:00:00 2001 From: WilliamKoza Date: Mon, 31 Oct 2016 08:48:22 +0100 Subject: [PATCH] docs(cookbook): fix spelling error for word 'class' (#2682) --- 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 e2d28b0672..7c4fbab0ed 100644 --- a/public/docs/ts/latest/cookbook/component-communication.jade +++ b/public/docs/ts/latest/cookbook/component-communication.jade @@ -246,7 +246,7 @@ a(id="countdown-tests") Here is the parent, `CountdownViewChildParentComponent`: +makeExample('cb-component-communication/ts/app/countdown-parent.component.ts', 'vc') :marked - It takes a bit more work to get the child view into the parent component classs. + It takes a bit more work to get the child view into the parent component *class*. We import references to the `ViewChild` decorator and the `AfterViewInit` lifecycle hook.