@@ -221,18 +221,18 @@ function $RootScopeProvider(){
221
221
* reruns when it detects changes the `watchExpression` can execute multiple times per
222
222
* {@link ng.$rootScope.Scope#$digest $digest()} and should be idempotent.)
223
223
* - The `listener` is called only when the value from the current `watchExpression` and the
224
- * previous call to `watchExpression` are not equal (with the exception of the initial run
224
+ * previous call to `watchExpression` are not equal (with the exception of the initial run,
225
225
* see below). The inequality is determined according to
226
- * {@link angular.equals} function. To save the value of the object for later comparison
226
+ * {@link angular.equals} function. To save the value of the object for later comparison, the
227
227
* {@link angular.copy} function is used. It also means that watching complex options will
228
228
* have adverse memory and performance implications.
229
229
* - The watch `listener` may change the model, which may trigger other `listener`s to fire. This
230
230
* is achieved by rerunning the watchers until no changes are detected. The rerun iteration
231
- * limit is 100 to prevent infinity loop deadlock.
231
+ * limit is 100 to prevent an infinite loop deadlock.
232
232
*
233
233
*
234
234
* If you want to be notified whenever {@link ng.$rootScope.Scope#$digest $digest} is called,
235
- * you can register an `watchExpression` function with no `listener`. (Since `watchExpression`,
235
+ * you can register a `watchExpression` function with no `listener`. (Since `watchExpression`
236
236
* can execute multiple times per {@link ng.$rootScope.Scope#$digest $digest} cycle when a change is
237
237
* detected, be prepared for multiple calls to your listener.)
238
238
*
0 commit comments