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

View File

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