From 769a00dc867679d6e206d6fa74809efcd7e6ba34 Mon Sep 17 00:00:00 2001 From: active-low Date: Sun, 28 Sep 2014 20:02:38 -0500 Subject: [PATCH] docs(guide/concepts): improve readability --- docs/content/guide/concepts.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/guide/concepts.ngdoc b/docs/content/guide/concepts.ngdoc index 0ae07675..face0a6b 100644 --- a/docs/content/guide/concepts.ngdoc +++ b/docs/content/guide/concepts.ngdoc @@ -67,8 +67,8 @@ element that adds extra behavior to the element. The {@link ng.directive:ngModel stores/updates the value of the input field into/from a variable.
-**Custom directives to access the DOM**: In Angular, the only place where an application touches the DOM is - within directives. This is good as artifacts that access the DOM are hard to test. +**Custom directives to access the DOM**: In Angular, the only place where an application should access the DOM is + within directives. This is important because artifacts that access the DOM are hard to test. If you need to access the DOM directly you should write a custom directive for this. The {@link directive directives guide} explains how to do this.