X Tutup
Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -493,8 +493,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 @@ -822,8 +822,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
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What happened to RouteRecognizer? I began to think that it was deleted some time ago and fallen into disuse. I wasn't able to find the class refered here in the docs, maybe someone can explain what happened here.

* construct `ComponentInstruction`s.
*
* You should not modify this object. It should be treated as immutable.
Expand Down
X Tutup