Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit a564160

Browse files
docs(bike-shed-migration): fix url-based links refs to AUTO module
1 parent 06f2ba8 commit a564160

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+261
-261
lines changed

docs/content/error/cacheFactory/iid.ngdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
@fullName Invalid ID
44
@description
55

6-
This error occurs when trying to create a new `cache` object via {@link api/ng.$cacheFactory} with an ID that was already used to create another cache object.
6+
This error occurs when trying to create a new `cache` object via {@link ng.$cacheFactory} with an ID that was already used to create another cache object.
77

88
To resolve the error please use a different cache ID when calling `$cacheFactory`.

docs/content/error/compile/ctreq.ngdoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@fullName Missing Required Controller
44
@description
55

6-
This error occurs when {@link api/ng.$compile HTML compiler} tries to process a directive that specifies the {@link api/ng.$compile#description_comprehensive-directive-api_directive-definition-object `require` option} in a {@link api/ng.$compile#description_comprehensive-directive-api directive definition},
6+
This error occurs when {@link ng.$compile HTML compiler} tries to process a directive that specifies the {@link ng.$compile#description_comprehensive-directive-api_directive-definition-object `require` option} in a {@link ng.$compile#description_comprehensive-directive-api directive definition},
77
but the required directive controller is not present on the current DOM element (or its ancestor element, if `^` was specified).
88

99
To resolve this error ensure that there is no typo in the required controller name and that the required directive controller is present on the current element.
@@ -13,7 +13,7 @@ If the required controller is expected to be on a ancestor element, make ensure
1313
If the required controller is optionally requested, use `?` or `^?` to specify that.
1414

1515

16-
Example of a directive that requires {@link api/ng.directive:ngModel ngModel} controller:
16+
Example of a directive that requires {@link ng.directive:ngModel ngModel} controller:
1717
```
1818
myApp.directive('myDirective', function() {
1919
return {
@@ -29,7 +29,7 @@ This directive can then be used as:
2929
```
3030

3131

32-
Example of a directive that optionally requires a {@link api/ng.directive:form form} controller from an ancestor:
32+
Example of a directive that optionally requires a {@link ng.directive:form form} controller from an ancestor:
3333
```
3434
myApp.directive('myDirective', function() {
3535
return {

docs/content/error/compile/iscp.ngdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ myModule.directive('directiveName', function factory() {
2121
});
2222
```
2323

24-
Please refer to the {@link api/ng.$compile#description_comprehensive-directive-api_directive-definition-object
24+
Please refer to the {@link ng.$compile#description_comprehensive-directive-api_directive-definition-object
2525
`scope` option} of the directive definition documentation to learn more about the API.

docs/content/error/compile/nonassign.ngdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@description
55

66
This error occurs when a directive defines an isolate scope property
7-
(using the `=` mode in the {@link api/ng.$compile#description_comprehensive-directive-api_directive-definition-object
7+
(using the `=` mode in the {@link ng.$compile#description_comprehensive-directive-api_directive-definition-object
88
`scope` option} of a directive definition) but the directive is used with an expression that is not-assignable.
99

1010
In order for the two-way data-binding to work, it must be possible to write new values back into the path defined with the expression.

docs/content/error/compile/selmulti.ngdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
@fullName Binding to Multiple Attribute
44
@description
55

6-
Binding to the `multiple` attribute of `select` element is not supported since switching between multiple and single mode changes the {@link api/ng.directive:ngModel `ngModel`} object type from instance to array of instances which breaks the model semantics.
6+
Binding to the `multiple` attribute of `select` element is not supported since switching between multiple and single mode changes the {@link ng.directive:ngModel `ngModel`} object type from instance to array of instances which breaks the model semantics.
77

8-
If you need to use different types of `select` elements in your template based on some variable, please use {@link api/ng.directive:ngIf ngIf} or {@link api/ng.directive:ngSwitch ngSwitch} directives to select one of them to be used at runtime.
8+
If you need to use different types of `select` elements in your template based on some variable, please use {@link ng.directive:ngIf ngIf} or {@link ng.directive:ngSwitch ngSwitch} directives to select one of them to be used at runtime.
99

1010

1111
Example with invalid usage:

docs/content/error/compile/tpload.ngdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
@fullName Error Loading Template
44
@description
55

6-
This error occurs when {@link api/ng.$compile `$compile`} attempts to fetch a template from some URL, and the request fails.
6+
This error occurs when {@link ng.$compile `$compile`} attempts to fetch a template from some URL, and the request fails.
77

88
To resolve this error, ensure that the URL of the template is spelled correctly and resolves to correct absolute URL.
99
The [Chrome Developer Tools](https://developers.google.com/chrome-developer-tools/docs/network#network_panel_overview) might also be helpful in determining why the request failed.
1010

11-
If you are using {@link api/ng.$templateCache} to pre-load templates, ensure that the cache was populated with the template.
11+
If you are using {@link ng.$templateCache} to pre-load templates, ensure that the cache was populated with the template.

docs/content/error/controller/noscp.ngdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@fullName Missing $scope object
44
@description
55

6-
This error occurs when {@link api/ng.$controller $controller} service is called in order to instantiate a new controller but no scope is provided via `$scope` property of the locals map.
6+
This error occurs when {@link ng.$controller $controller} service is called in order to instantiate a new controller but no scope is provided via `$scope` property of the locals map.
77

88
Example of incorrect usage that leads to this error:
99
```
@@ -18,4 +18,4 @@ To fix the example above please provide a scope to the $controller call:
1818
$controller(MyController, {$scope, newScope});
1919
```
2020

21-
Please consult the {@link api/ng.$controller $controller} service api docs to learn more.
21+
Please consult the {@link ng.$controller $controller} service api docs to learn more.

docs/content/error/injector/cdep.ngdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@fullName Circular Dependency
44
@description
55

6-
This error occurs when the {@link api/angular.injector $injector} tries to get
6+
This error occurs when the {@link angular.injector $injector} tries to get
77
a service that depends on itself, either directly or indirectly. To fix this,
88
construct your dependency chain such that there are no circular dependencies.
99

docs/content/error/injector/modulerr.ngdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ message above should provide additional context.
88

99
In AngularJS `1.2.0` and later, `ngRoute` has been moved to its own module.
1010
If you are getting this error after upgrading to `1.2.x`, be sure that you've
11-
installed {@link api/ngRoute `ngRoute`}.
11+
installed {@link ngRoute `ngRoute`}.

docs/content/error/injector/nomod.ngdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
This error occurs when trying to "re-open" a module that has not yet been defined.
77

8-
To define a new module, call {@link api/angular.module angular.module} with a name
8+
To define a new module, call {@link angular.module angular.module} with a name
99
and an array of dependent modules, like so:
1010

1111
```

0 commit comments

Comments
 (0)