From b185dbe3d7ae86b48b69e31e512634ee6edde51e Mon Sep 17 00:00:00 2001 From: Joseph Newton Date: Fri, 10 Mar 2017 21:14:39 +0000 Subject: [PATCH] docs(reactive-forms): fix import symbol typos --- public/docs/ts/latest/guide/reactive-forms.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/reactive-forms.jade b/public/docs/ts/latest/guide/reactive-forms.jade index 1670a88124..d847e73ed9 100644 --- a/public/docs/ts/latest/guide/reactive-forms.jade +++ b/public/docs/ts/latest/guide/reactive-forms.jade @@ -715,7 +715,7 @@ a#set-data hook, which Angular calls whenever the input `hero` property changes as the following steps demonstrate. - First, import the `ngOnChanges` and `import` symbol in `hero-detail.component.ts`. + First, import the `OnChanges` and `Input` symbols in `hero-detail.component.ts`. +makeExample('reactive-forms/ts/src/app/hero-detail-6.component.ts', 'import-input','src/app/hero-detail.component.ts (core imports)')(format=".")