@@ -285,10 +285,10 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$
285
285
* * `$rollbackViewValue()` is called. If we are rolling back the view value to the last
286
286
* committed value then `$render()` is called to update the input control.
287
287
* * The value referenced by `ng-model` is changed programmatically and both the `$modelValue` and
288
- * the `$viewValue` are different to last time.
288
+ * the `$viewValue` are different from last time.
289
289
*
290
290
* Since `ng-model` does not do a deep watch, `$render()` is only invoked if the values of
291
- * `$modelValue` and `$viewValue` are actually different to their previous value. If `$modelValue`
291
+ * `$modelValue` and `$viewValue` are actually different from their previous value. If `$modelValue`
292
292
* or `$viewValue` are objects (rather than a string or number) then `$render()` will not be
293
293
* invoked if you only change a property on the objects.
294
294
*/
@@ -305,7 +305,7 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$
305
305
*
306
306
* The default `$isEmpty` function checks whether the value is `undefined`, `''`, `null` or `NaN`.
307
307
*
308
- * You can override this for input directives whose concept of being empty is different to the
308
+ * You can override this for input directives whose concept of being empty is different from the
309
309
* default. The `checkboxInputType` directive does this because in its case a value of `false`
310
310
* implies empty.
311
311
*
@@ -954,7 +954,7 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$
954
954
* Sometimes it's helpful to bind `ngModel` to a getter/setter function. A getter/setter is a
955
955
* function that returns a representation of the model when called with zero arguments, and sets
956
956
* the internal state of a model when called with an argument. It's sometimes useful to use this
957
- * for models that have an internal representation that's different than what the model exposes
957
+ * for models that have an internal representation that's different from what the model exposes
958
958
* to the view.
959
959
*
960
960
* <div class="alert alert-success">
@@ -1070,7 +1070,7 @@ var DEFAULT_REGEXP = /(\s+|^)default(\s+|$)/;
1070
1070
* takes place when a timer expires; this timer will be reset after another change takes place.
1071
1071
*
1072
1072
* Given the nature of `ngModelOptions`, the value displayed inside input fields in the view might
1073
- * be different than the value in the actual model. This means that if you update the model you
1073
+ * be different from the value in the actual model. This means that if you update the model you
1074
1074
* should also invoke {@link ngModel.NgModelController `$rollbackViewValue`} on the relevant input field in
1075
1075
* order to make sure it is synchronized with the model and that any debounced action is canceled.
1076
1076
*
0 commit comments