From 61bb9762cfe5e79fa674da7acb8af2da7137cbe1 Mon Sep 17 00:00:00 2001 From: Bruno Coelho Date: Sat, 18 Apr 2015 20:59:32 -0300 Subject: [PATCH] docs(guide/Scopes): remove unnecessary parenthesis --- 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 5f843aea5312..bfeda58b5e45 100644 --- a/docs/content/guide/scope.ngdoc +++ b/docs/content/guide/scope.ngdoc @@ -264,7 +264,7 @@ the `$digest` phase. This delay is desirable, since it coalesces multiple model 3. **Model mutation** For mutations to be properly observed, you should make them only within the {@link - ng.$rootScope.Scope#$apply scope.$apply()}. (Angular APIs do this + ng.$rootScope.Scope#$apply scope.$apply()}. Angular APIs do this implicitly, so no extra `$apply` call is needed when doing synchronous work in controllers, or asynchronous work with {@link ng.$http $http}, {@link ng.$timeout $timeout} or {@link ng.$interval $interval} services.