docs: Added multicast to observable descriptions (#24255)

PR Close #24255
This commit is contained in:
Brandon Roberts 2018-06-07 13:41:26 -05:00 committed by Miško Hevery
parent 1a642231cd
commit 1b862820e9

View File

@ -281,14 +281,14 @@ export abstract class AbstractControl {
/** /**
* @description * @description
* An observable that emits an event every time the value of the control changes, in * A multicasted observable that emits an event every time the value of the control changes, in
* the UI or programmatically. * the UI or programmatically.
*/ */
public readonly valueChanges: Observable<any>; public readonly valueChanges: Observable<any>;
/** /**
* @description * @description
* An observable that emits an event every time the validation `status` of the control * A multicasted observable that emits an event every time the validation `status` of the control
* is re-calculated. * is re-calculated.
*/ */
public readonly statusChanges: Observable<any>; public readonly statusChanges: Observable<any>;