Skip to content

Commit 0532aab

Browse files
committed
doc(guide): clean up broken links
1 parent f0be543 commit 0532aab

24 files changed

+53
-53
lines changed

docs/content/cookbook/form.ngdoc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,7 @@ allow a user to enter data.
108108
is going on.
109109
* The {@link api/angular.module.ng.$compileProvider.directive.input input directives} simply refer
110110
to the model and are data-bound.
111-
* The inputs {@link guide/dev_guide.forms validate}. (Try leaving them blank or entering non digits
112-
in the zip field)
111+
* The inputs validate. (Try leaving them blank or entering non digits in the zip field)
113112
* In your application you can simply read from or write to the model and the form will be updated.
114113
* By clicking the 'add' link you are adding new items into the `user.contacts` array which are then
115114
reflected in the view.

docs/content/guide/bootstrap.ngdoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ initialization.
4949
# Automatic Initialization
5050

5151
Angular initializes automatically upon `DOMContentLoaded` event, at which point angular looks for
52-
the {@link api/angular.module.ng.$compileProvider.directive.ng:app `ng-app`} directive which
52+
the {@link api/angular.module.ng.$compileProvider.directive.ngApp `ng-app`} directive which
5353
designates your application root. If {@link
5454
api/angular.module.ng.$compileProvider.directive.ng:app `ng-app`} directive is found then Angular
5555
will:
5656

5757
* load the {@link guide/module module} associated with the directive.
5858
* create the application {@link api/angular.module.AUTO.$injector injector}
59-
* compile the DOM treating the {@link api/angular.module.ng.$compileProvider.directive.ng:app
59+
* compile the DOM treating the {@link api/angular.module.ng.$compileProvider.directive.ngApp
6060
`ng-app`} directive as the root of the compilation. This allows you to tell it to treat only a
6161
portion of the DOM as an Angular application.
6262

@@ -82,7 +82,7 @@ or the need to perform an operation before the Angular compiles a page.
8282

8383

8484
Here is an example of manually initializing Angular. The example is equivalent to using the {@link
85-
api/angular.module.ng.$compileProvider.directive.ng:app ng:app} directive.
85+
api/angular.module.ng.$compileProvider.directive.ngApp ng-app} directive.
8686

8787
<pre>
8888
<!doctype html>

docs/content/guide/compiler.ngdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ process happens into two phases.
3939
scope model are reflected in the view, and any user interactions with the view are reflected
4040
in the scope model. Making the scope model a single source of truth.
4141

42-
Some directives such {@link api/angular.module.ng.$compileProvider.directive.ng:repeat
42+
Some directives such {@link api/angular.module.ng.$compileProvider.directive.ngRepeat
4343
`ng-repeat`} clone DOM elements once for each item in collection. Having a compile and link phase
4444
improves performance since the cloned template only needs to be compiled once, and then linked
4545
once for each clone instance.
@@ -50,7 +50,7 @@ once for each clone instance.
5050
Directive is a behavior which should be triggered when specific HTML constructs are encountered in
5151
compilation process. The directives can be placed in element names, attributes, class names, as
5252
well as comments. Here are some equivalent examples of invoking {@link
53-
api/angular.module.ng.$compileProvider.directive.ng:bind `ng-bind`} directive.
53+
api/angular.module.ng.$compileProvider.directive.ngBind `ng-bind`} directive.
5454

5555
<pre>
5656
<span ng-bind="exp"></span>

docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Putting any presentation logic into controllers significantly affects testabilit
5858
logic. Angular offers {@link dev_guide.templates.databinding} for automatic DOM manipulation. If
5959
you have to perform your own manual DOM manipulation, encapsulate the presentation logic in
6060
{@link guide/directive directives}.
61-
- Input formatting — Use {@link dev_guide.forms angular form controls} instead.
61+
- Input formatting — Use {@link forms angular form controls} instead.
6262
- Output filtering — Use {@link dev_guide.templates.filters angular filters} instead.
6363
- Run stateless or stateful code shared across controllers — Use {@link dev_guide.services angular
6464
services} instead.

docs/content/guide/dev_guide.mvc.understanding_model.ngdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ occurs in controllers:
2626
$scope.foo = 'bar';
2727
}
2828

29-
* Use an {@link dev_guide.expressions angular expression} with an assignment operator in templates:
29+
* Use an {@link expression angular expression} with an assignment operator in templates:
3030

3131
<button ng-click="{{foos='ball'}}">Click me</button>
3232

docs/content/guide/dev_guide.services.creating_services.ngdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ create this instance when called.
4949
# Dependencies
5050

5151
Services can not only be depended upon, but also have its own dependencies. These can be specified
52-
as arguments of the factory function. {@link di.understanding_di Read more} about the DI
52+
as arguments of the factory function. {@link di Read more} about the DI
5353
in Angular and the use of array notation and $inject property to make DI annotation
5454
minification-proof.
5555

docs/content/guide/dev_guide.templates.css-styling.ngdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ Angular sets these CSS classes. It is up to your application to provide useful s
2020
## Related Topics
2121

2222
* {@link dev_guide.templates Angular Templates}
23-
* {@link dev_guide.forms Angular Forms}
23+
* {@link forms Angular Forms}

docs/content/guide/dev_guide.templates.filters.creating_filters.ngdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ text upper-case and assigns color.
5959
## Related Topics
6060

6161
* {@link dev_guide.templates.filters Understanding Angular Filters}
62-
* {@link dev_guide.compiler Angular HTML Compiler}
62+
* {@link compiler Angular HTML Compiler}
6363

6464
## Related API
6565

docs/content/guide/dev_guide.templates.ngdoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ These are the types of angular elements and element attributes you can use in a
1515
* {@link api/angular.module.ng.$interpolate Markup} — The double
1616
curly brace notation `{{ }}` to bind expressions to elements is built-in angular markup.
1717
* {@link dev_guide.templates.filters Filter} — Formats your data for display to the user.
18-
* {@link dev_guide.forms Form controls} — Lets you validate user input.
18+
* {@link forms Form controls} — Lets you validate user input.
1919

2020
Note: In addition to declaring the elements above in templates, you can also access these elements
2121
in JavaScript code.
2222

2323
The following code snippet shows a simple angular template made up of standard HTML tags along with
2424
angular {@link guide/directive directives} and curly-brace bindings
25-
with {@link dev_guide.expressions expressions}:
25+
with {@link expression expressions}:
2626

2727
<pre>
2828
<html ng-app>
@@ -50,7 +50,7 @@ eight.
5050
## Related Topics
5151

5252
* {@link dev_guide.templates.filters Angular Filters}
53-
* {@link dev_guide.forms Angular Forms}
53+
* {@link forms Angular Forms}
5454

5555
## Related API
5656

docs/content/guide/directive.ngdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@ngdoc overview
2-
@name directive
2+
@name Directives
33
@description
44

55
Directives are a way to teach HTML new tricks. During DOM compilation directives are matched

0 commit comments

Comments
 (0)