aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/guide')
-rw-r--r--docs/content/guide/compiler.ngdoc (renamed from docs/content/guide/guide.compiler.ngdoc)0
-rw-r--r--docs/content/guide/css.ngdoc (renamed from docs/content/guide/guide.css.ngdoc)2
-rw-r--r--docs/content/guide/di.ngdoc (renamed from docs/content/guide/guide.di.ngdoc)2
-rw-r--r--docs/content/guide/index.ngdoc5
-rw-r--r--docs/content/guide/overview.ngdoc2
5 files changed, 4 insertions, 7 deletions
diff --git a/docs/content/guide/guide.compiler.ngdoc b/docs/content/guide/compiler.ngdoc
index 8896db43..8896db43 100644
--- a/docs/content/guide/guide.compiler.ngdoc
+++ b/docs/content/guide/compiler.ngdoc
diff --git a/docs/content/guide/guide.css.ngdoc b/docs/content/guide/css.ngdoc
index 6e028f30..435186c9 100644
--- a/docs/content/guide/guide.css.ngdoc
+++ b/docs/content/guide/css.ngdoc
@@ -20,7 +20,7 @@ by a solid red border, for example:
-You can try to evaluate malformed expressions in {@link angualr.expression expression} to see the
+You can try to evaluate malformed expressions in {@link guide.expression expression} to see the
`ng-exception` class' styling.
## `ng-validation-error`
diff --git a/docs/content/guide/guide.di.ngdoc b/docs/content/guide/di.ngdoc
index 2d1f92eb..6d9a746f 100644
--- a/docs/content/guide/guide.di.ngdoc
+++ b/docs/content/guide/di.ngdoc
@@ -125,7 +125,7 @@ dependency injection since the caller is still responsible for retrieving the de
dependency injection is like Chuck Norris. Chuck does not ask for dependencies; he declares them.*
The most common place to use dependency injection in angular applications is in
-{@link angular.ng:controller controllers}. Here’s a simple example:
+{@link angular.directive.@ng:controller controllers}. Here’s a simple example:
<pre>
function MyController($route){
diff --git a/docs/content/guide/index.ngdoc b/docs/content/guide/index.ngdoc
index 2798210d..1a9d2555 100644
--- a/docs/content/guide/index.ngdoc
+++ b/docs/content/guide/index.ngdoc
@@ -31,7 +31,4 @@
* {@link angular.service Service} - Objects that are wired through dependency injection and then
injected into the root scope.
* {@link guide.testing Testing}
- * service:$browser(mock)
-* {@link downloading Downloading} - How to download, compile, and host the angular
- environment on your own server.
-* {@link guide.contribute Contributing} - How to contribute to angular project.
+ * service:$browser(mock) \ No newline at end of file
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.