From efc7639352cd9dea8aeb6de620999ea1dd37975a Mon Sep 17 00:00:00 2001 From: Brandon Roberts Date: Thu, 7 Jun 2018 13:41:26 -0500 Subject: [PATCH] docs: Added multicast to observable descriptions (#24255) PR Close #24255 --- packages/forms/src/model.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/forms/src/model.ts b/packages/forms/src/model.ts index bfff7a7c3a..1a960409ba 100644 --- a/packages/forms/src/model.ts +++ b/packages/forms/src/model.ts @@ -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; /** * @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;