From b4aefe5fa8c2169c3e8d305ec01bc1a01148b592 Mon Sep 17 00:00:00 2001 From: Ralph Samuel Date: Wed, 29 Oct 2014 11:47:24 -0700 Subject: [PATCH] docs(guide/Scopes): (fix) gramatical error line 248 changed "as well as it guarantees" to ", and guarantees" --- docs/content/guide/scope.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.