aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/dev_guide.scopes.ngdoc
diff options
context:
space:
mode:
authorIgor Minar2011-09-01 15:33:48 -0700
committerIgor Minar2011-09-02 10:44:19 -0700
commitbc6e0cc9545e04ded113c1b894a9c55cbd1774b1 (patch)
tree95ca8541e9f33858fffd8824583a2e4400526e0c /docs/content/guide/dev_guide.scopes.ngdoc
parent8d11db0757263ef1467ff1cbaf1f1e978ba3ac60 (diff)
downloadangular.js-bc6e0cc9545e04ded113c1b894a9c55cbd1774b1.tar.bz2
docs(guide/tutorial/misc): sync with google docs
Diffstat (limited to 'docs/content/guide/dev_guide.scopes.ngdoc')
-rw-r--r--docs/content/guide/dev_guide.scopes.ngdoc7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/content/guide/dev_guide.scopes.ngdoc b/docs/content/guide/dev_guide.scopes.ngdoc
index 6ebd5501..b59bd87b 100644
--- a/docs/content/guide/dev_guide.scopes.ngdoc
+++ b/docs/content/guide/dev_guide.scopes.ngdoc
@@ -1,4 +1,3 @@
-@workInProgress
@ngdoc overview
@name Developer Guide: Scopes
@description
@@ -20,9 +19,9 @@ example, functions registered through {@link api/angular.scope.$watch $watch}, b
Angular scope objects:
* Link the model, controller and view template together.
-* Provide the mechanism to watch for model changes ({@link api/angular.scope.$watch}).
-* Notify interested components when the model changes ({@link api/angular.scope.$eval}).
-* Provide the context in which expressions are evaluated.
+* Provide the mechanism to watch for model changes ({@link api/angular.scope.$watch $watch}).
+* Apply model changes to the system ({@link api/angular.scope.$apply $apply}).
+* Provide the context in which expressions are evaluated ({@link api/angular.scope.$eval $eval}).
## Related Topics