Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 8c81a0f

Browse files
brettcannonbtford
authored andcommitted
fix(docs): Fix a spelling mistake by replacing the noun with "it"
1 parent bde931a commit 8c81a0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/guide/forms.ngdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,10 @@ To get a hold of the controller the directive specifies a dependency as shown in
186186
The validation can occur in two places:
187187

188188
* **Model to View update** -
189-
Whenever the bound model changes, all functions in {@link api/ng.directive:ngModel.NgModelController#$formatters NgModelController#$formatters} array are pipe-lined, so that each of these functions has an opportunity to format the value and change validity state of the form control through {@link api/ng.directive:ngModel.NgModelController#$setValidity NgModelController#$setValidity}.
189+
Whenever the bound model changes, all functions in {@link api/ng.directive:ngModel.NgModelController#$formatters NgModelController#$formatters} array are pipe-lined, so that each of these functions has an opportunity to format the value and change validity state of the form control through {@link api/ng.directive:ngModel.NgModelController#$setValidity NgModelController#$setValidity}.
190190

191191
* **View to Model update** -
192-
In a similar way, whenever a user interacts with a control, the controll calls {@link api/ng.directive:ngModel.NgModelController#$setViewValue NgModelController#$setViewValue}.
192+
In a similar way, whenever a user interacts with a control it calls {@link api/ng.directive:ngModel.NgModelController#$setViewValue NgModelController#$setViewValue}.
193193
This in turn pipelines all functions in {@link api/ng.directive:ngModel.NgModelController#$parsers NgModelController#$parsers} array, so that each of these functions has an opportunity to convert the value and change validity state of the form control through {@link api/ng.directive:ngModel.NgModelController#$setValidity NgModelController#$setValidity}.
194194

195195
In the following example we create two directives.

0 commit comments

Comments
 (0)