From d2ee5b46aa4feb016bee9be99757bd2a23165266 Mon Sep 17 00:00:00 2001 From: zurin Date: Wed, 14 Oct 2015 10:44:16 +0300 Subject: [PATCH] docs(guide/Scopes):Fixed Grammar Added a comma to make the reading more natural and correct. --- 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 7fbeb233f7ef..7954df618647 100644 --- a/docs/content/guide/scope.ngdoc +++ b/docs/content/guide/scope.ngdoc @@ -391,7 +391,7 @@ implementing custom event callbacks, or when working with third-party library ca 5. The {@link ng.$rootScope.Scope#$watch $watch} list is a set of expressions which may have changed since last iteration. If a change is detected then the `$watch` function is called which typically updates the DOM with the new value. - 6. Once the Angular {@link ng.$rootScope.Scope#$digest $digest} loop finishes + 6. Once the Angular {@link ng.$rootScope.Scope#$digest $digest} loop finishes, the execution leaves the Angular and JavaScript context. This is followed by the browser re-rendering the DOM to reflect any changes.