aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/overview.ngdoc
diff options
context:
space:
mode:
authorIgor Minar2011-05-18 12:17:16 -0700
committerIgor Minar2011-06-06 22:52:00 -0700
commit924ffafc51cf53ddf97f13ad748bbbf6d80caf13 (patch)
tree39c5766ec887df80c3525d89aad1f4451f016c02 /docs/content/guide/overview.ngdoc
parent3616716615c058756a3ead9808275ce9d72b1707 (diff)
downloadangular.js-924ffafc51cf53ddf97f13ad748bbbf6d80caf13.tar.bz2
fixing broken links
Diffstat (limited to 'docs/content/guide/overview.ngdoc')
-rw-r--r--docs/content/guide/overview.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/overview.ngdoc b/docs/content/guide/overview.ngdoc
index 61c58435..8723e839 100644
--- a/docs/content/guide/overview.ngdoc
+++ b/docs/content/guide/overview.ngdoc
@@ -112,7 +112,7 @@ These input widgets look normal enough, but consider these points:
of the input widgets (`qty` and `cost`) to variables of the same name. Think of those variables as
the "Model" part of the Model-View-Controller design pattern.
* Note the angular directives, {@link angular.widget.@ng:validate ng:validate} and {@link
-ngular.widget.@ng:required ng:required}. You may have noticed that when you enter invalid data or
+angular.widget.@ng:required ng:required}. You may have noticed that when you enter invalid data or
leave the the input fields blank, the borders turn a plainly irritated red color, and the display
value disappears. These `ng:` directives make it easier to implement field validators than coding
them in JavaScript, no? Yes.