From 4a18428de6afc12c8106898ca767a82491ee11f1 Mon Sep 17 00:00:00 2001 From: Stanislav Usov Date: Tue, 7 Apr 2020 11:23:21 +0300 Subject: [PATCH] docs(forms): Remove unnecessary repeating periods (#36474) PR Close #36474 --- packages/forms/src/model.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/forms/src/model.ts b/packages/forms/src/model.ts index 4dbe67666f..169f9e7446 100644 --- a/packages/forms/src/model.ts +++ b/packages/forms/src/model.ts @@ -480,7 +480,7 @@ export abstract class AbstractControl { * @param opts Configuration options that determine how the control emits events after * marking is applied. * * `onlySelf`: When true, mark only this control. When false or not supplied, - * marks all direct ancestors. Default is false.. + * marks all direct ancestors. Default is false. */ markAsPristine(opts: {onlySelf?: boolean} = {}): void { (this as {pristine: boolean}).pristine = true; @@ -505,7 +505,7 @@ export abstract class AbstractControl { * @param opts Configuration options that determine how the control propagates changes and * emits events after marking is applied. * * `onlySelf`: When true, mark only this control. When false or not supplied, - * marks all direct ancestors. Default is false.. + * marks all direct ancestors. Default is false. * * `emitEvent`: When true or not supplied (the default), the `statusChanges` * observable emits an event with the latest status the control is marked pending. * When false, no events are emitted. @@ -534,7 +534,7 @@ export abstract class AbstractControl { * @param opts Configuration options that determine how the control propagates * changes and emits events after the control is disabled. * * `onlySelf`: When true, mark only this control. When false or not supplied, - * marks all direct ancestors. Default is false.. + * marks all direct ancestors. Default is false. * * `emitEvent`: When true or not supplied (the default), both the `statusChanges` and * `valueChanges` * observables emit events with the latest status and value when the control is disabled. @@ -573,7 +573,7 @@ export abstract class AbstractControl { * @param opts Configure options that control how the control propagates changes and * emits events when marked as untouched * * `onlySelf`: When true, mark only this control. When false or not supplied, - * marks all direct ancestors. Default is false.. + * marks all direct ancestors. Default is false. * * `emitEvent`: When true or not supplied (the default), both the `statusChanges` and * `valueChanges` * observables emit events with the latest status and value when the control is enabled. @@ -635,7 +635,7 @@ export abstract class AbstractControl { * @param opts Configuration options determine how the control propagates changes and emits events * after updates and validity checks are applied. * * `onlySelf`: When true, only update this control. When false or not supplied, - * update all direct ancestors. Default is false.. + * update all direct ancestors. Default is false. * * `emitEvent`: When true or not supplied (the default), both the `statusChanges` and * `valueChanges` * observables emit events with the latest status and value when the control is updated.