docs(forms): fix ControlValueAccessor registerOnChange code example (#30276)

PR Close #30276
This commit is contained in:
Vinit Tomar 2019-04-29 18:41:57 +05:30 committed by Kara Erickson
parent 60a8888b4f
commit 39f2c9f46b
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ export interface ControlValueAccessor {
*
* ```ts
* host: {
* (change): '_onChange($event.target.value)'
* '(change)': '_onChange($event.target.value)'
* }
* ```
*