diff --git a/packages/forms/src/model.ts b/packages/forms/src/model.ts index b91db362e6..70c42481ea 100644 --- a/packages/forms/src/model.ts +++ b/packages/forms/src/model.ts @@ -294,7 +294,8 @@ export abstract class AbstractControl { /** * A multicasting observable that emits an event every time the value of the control changes, in - * the UI or programmatically. + * the UI or programmatically. It also emits an event each time you call enable() or disable() + * without passing along {emitEvent: false} as a function argument. */ // TODO(issue/24571): remove '!'. public readonly valueChanges !: Observable;