aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/dev_guide.templates.ngdoc
diff options
context:
space:
mode:
authorMisko Hevery2012-05-24 14:49:47 -0700
committerMisko Hevery2012-06-02 16:02:08 -0700
commit0532aabcf97a08badd6ed67ad40453d37da89556 (patch)
tree954f5f922b0c178c050321b26c484be468b52b8c /docs/content/guide/dev_guide.templates.ngdoc
parentf0be543614d5c2c3f492e1ed73ec964bd8a3d381 (diff)
downloadangular.js-0532aabcf97a08badd6ed67ad40453d37da89556.tar.bz2
doc(guide): clean up broken links
Diffstat (limited to 'docs/content/guide/dev_guide.templates.ngdoc')
-rw-r--r--docs/content/guide/dev_guide.templates.ngdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/guide/dev_guide.templates.ngdoc b/docs/content/guide/dev_guide.templates.ngdoc
index b5f6dade..f0c0f280 100644
--- a/docs/content/guide/dev_guide.templates.ngdoc
+++ b/docs/content/guide/dev_guide.templates.ngdoc
@@ -15,14 +15,14 @@ These are the types of angular elements and element attributes you can use in a
* {@link api/angular.module.ng.$interpolate Markup} — The double
curly brace notation `{{ }}` to bind expressions to elements is built-in angular markup.
* {@link dev_guide.templates.filters Filter} — Formats your data for display to the user.
-* {@link dev_guide.forms Form controls} — Lets you validate user input.
+* {@link forms Form controls} — Lets you validate user input.
Note: In addition to declaring the elements above in templates, you can also access these elements
in JavaScript code.
The following code snippet shows a simple angular template made up of standard HTML tags along with
angular {@link guide/directive directives} and curly-brace bindings
-with {@link dev_guide.expressions expressions}:
+with {@link expression expressions}:
<pre>
<html ng-app>
@@ -50,7 +50,7 @@ eight.
## Related Topics
* {@link dev_guide.templates.filters Angular Filters}
-* {@link dev_guide.forms Angular Forms}
+* {@link forms Angular Forms}
## Related API