diff --git a/docs/content/guide/scope.ngdoc b/docs/content/guide/scope.ngdoc index 1a6c14f673b2..50b74a222af9 100644 --- a/docs/content/guide/scope.ngdoc +++ b/docs/content/guide/scope.ngdoc @@ -245,7 +245,7 @@ of the `$watch` expressions and compares them with the previous value. This dirt asynchronously. This means that assignment such as `$scope.username="angular"` will not immediately cause a `$watch` to be notified, instead the `$watch` notification is delayed until the `$digest` phase. This delay is desirable, since it coalesces multiple model updates into one -`$watch` notification as well as it guarantees that during the `$watch` notification no other +`$watch` notification, and guarantees that during the `$watch` notification no other `$watch`es are running. If a `$watch` changes the value of the model, it will force additional `$digest` cycle.