Skip to content

Commit

Permalink
docs(): fix broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
kutyel committed Apr 18, 2016
1 parent 75463cd commit ecb9bb9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion modules/angular2/src/core/application_tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {CONST_EXPR, Math, StringWrapper} from 'angular2/src/facade/lang';
export const APP_COMPONENT_REF_PROMISE = CONST_EXPR(new OpaqueToken('Promise<ComponentRef>'));

/**
* An {@link angular2/di/OpaqueToken} representing the application root type in the {@link
* An {@link OpaqueToken-class.html} representing the application root type in the {@link
* Injector}.
*
* ```
Expand Down
2 changes: 1 addition & 1 deletion modules/angular2/src/core/di/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ export class ResolvedFactory {
* to an existing `token`.
* See {@link ProviderBuilder} for more details.
*
* The `token` is most commonly a class or {@link angular2/di/OpaqueToken}.
* The `token` is most commonly a class or {@link OpaqueToken-class.html}.
*
* @deprecated
*/
Expand Down
8 changes: 4 additions & 4 deletions modules/angular2/src/core/metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -504,8 +504,8 @@ export interface HostListenerFactory {
*
* ## Lifecycle hooks
*
* When the component class implements some {@link angular2/lifecycle_hooks} the callbacks are
* called by the change detection at defined points in time during the life of the component.
* When the component class implements some {@link ../../guide/lifecycle-hooks.html} the callbacks
* are called by the change detection at defined points in time during the life of the component.
*
* ### Example
*
Expand Down Expand Up @@ -833,8 +833,8 @@ export var Component: ComponentFactory =
*
* ## Lifecycle hooks
*
* When the directive class implements some {@link angular2/lifecycle_hooks} the callbacks are
* called by the change detection at defined points in time during the life of the directive.
* When the directive class implements some {@link ../../guide/lifecycle-hooks.html} the callbacks
* are called by the change detection at defined points in time during the life of the directive.
*
* ### Example
*
Expand Down
8 changes: 4 additions & 4 deletions modules/angular2/src/core/metadata/directives.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,8 @@ import {ViewEncapsulation} from 'angular2/src/core/metadata/view';
*
* ## Lifecycle hooks
*
* When the directive class implements some {@link angular2/lifecycle_hooks} the callbacks are
* called by the change detection at defined points in time during the life of the directive.
* When the directive class implements some {@link ../../guide/lifecycle-hooks.html} the callbacks
* are called by the change detection at defined points in time during the life of the directive.
*
* ### Example
*
Expand Down Expand Up @@ -777,8 +777,8 @@ export class DirectiveMetadata extends InjectableMetadata {
*
* ## Lifecycle hooks
*
* When the component class implements some {@link angular2/lifecycle_hooks} the callbacks are
* called by the change detection at defined points in time during the life of the component.
* When the component class implements some {@link ../../guide/lifecycle-hooks.html} the callbacks
* are called by the change detection at defined points in time during the life of the component.
*
* ### Example
*
Expand Down
2 changes: 1 addition & 1 deletion modules/angular2/src/router/instruction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ export class RedirectInstruction extends ResolvedInstruction {
* to route lifecycle hooks, like {@link CanActivate}.
*
* `ComponentInstruction`s are [hash consed](https://en.wikipedia.org/wiki/Hash_consing). You should
* never construct one yourself with "new." Instead, rely on {@link Router/RouteRecognizer} to
* never construct one yourself with "new." Instead, rely on router's internal recognizer to
* construct `ComponentInstruction`s.
*
* You should not modify this object. It should be treated as immutable.
Expand Down

0 comments on commit ecb9bb9

Please sign in to comment.