X Tutup
Skip to content
Closed
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
6 changes: 3 additions & 3 deletions modules/angular2/src/core/annotations_impl/annotations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ export class Directive extends Injectable {
* For example, we could write a binding that updates the directive on structural changes, rather
* than on reference changes, as normally occurs in change detection.
*
* See {@link Pipe} and {@link pipes/keyValDiff} documentation for more details.
* See {@link Pipe} and {@link KeyValueChanges} documentation for more details.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Lgtm

*
* ```
* @Directive({
Expand Down Expand Up @@ -724,8 +724,8 @@ export class Directive extends Injectable {
/**
* Specifies a set of lifecycle hostListeners in which the directive participates.
*
* See {@link annotations/onChange}, {@link annotations/onDestroy},
* {@link annotations/onAllChangesDone} for details.
* See {@link #onChange}, {@link #onDestroy},
* {@link #onAllChangesDone} for details.
*/
lifecycle: List<LifecycleEvent>;

Expand Down
X Tutup