From 5e3832ea9c06d063acdf6cc4b45e1bcff9da8b3c Mon Sep 17 00:00:00 2001 From: Ralph Samuel Date: Wed, 29 Oct 2014 00:35:55 -0700 Subject: [PATCH] docs(guide/Scopes): add "the" in front of "DOM" on line 42 --- 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 7a30d43324e6..1a6c14f673b2 100644 --- a/docs/content/guide/scope.ngdoc +++ b/docs/content/guide/scope.ngdoc @@ -39,7 +39,7 @@ linking} phase the {@link ng.$compileProvider#directive directives} set up render the updated value to the DOM. Both controllers and directives have reference to the scope, but not to each other. This -arrangement isolates the controller from the directive as well as from DOM. This is an important +arrangement isolates the controller from the directive as well as from the DOM. This is an important point since it makes the controllers view agnostic, which greatly improves the testing story of the applications.