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 3e26cabe02
commit efc7639352
1 changed files with 2 additions and 2 deletions

View File

@ -281,14 +281,14 @@ export abstract class AbstractControl {
/**
* @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.
*/
public readonly valueChanges: Observable<any>;
/**
* @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.
*/
public readonly statusChanges: Observable<any>;