From 4d44cde291cabba92d104ef419076273a38b2aaf Mon Sep 17 00:00:00 2001 From: Kapunahele Wong Date: Tue, 11 Apr 2017 22:11:54 -0400 Subject: [PATCH] docs(reactive-forms): fix typo in link (#3527) --- 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 a963819cfd..0c73c338d8 100644 --- a/public/docs/ts/latest/guide/reactive-forms.jade +++ b/public/docs/ts/latest/guide/reactive-forms.jade @@ -708,7 +708,7 @@ a#set-data :marked In this approach, the value of `hero` in the `HeroDetailComponent` changes every time the user selects a new hero. - You should call _setValue_ in the [ngOnChanges](lifecyle-hooks.html#onchanges) + You should call _setValue_ in the [ngOnChanges](lifecycle-hooks.html#onchanges) hook, which Angular calls whenever the input `hero` property changes as the following steps demonstrate.