docs(x-ref links): Change links to use dgeni syntax

Closes #1440
This commit is contained in:
Naomi Black
2015-04-17 13:01:07 -07:00
committed by Misko Hevery
parent 64ad74acbe
commit 5c25248582
51 changed files with 259 additions and 249 deletions

View File

@ -210,10 +210,10 @@ export class IterableChanges extends Pipe {
/**
* This is the core function which handles differences between collections.
*
* - [record] is the record which we saw at this position last time. If null then it is a new
* - `record` is the record which we saw at this position last time. If null then it is a new
* item.
* - [item] is the current item in the collection
* - [index] is the position of the item in the collection
* - `item` is the current item in the collection
* - `index` is the position of the item in the collection
*/
_mismatch(record:CollectionChangeRecord, item, index:int):CollectionChangeRecord {
// The previous record after which we will append the current one.
@ -284,9 +284,9 @@ export class IterableChanges extends Pipe {
}
/**
* Get rid of any excess [CollectionChangeRecord]s from the previous collection
* Get rid of any excess {@link CollectionChangeRecord}s from the previous collection
*
* - [record] The first excess [CollectionChangeRecord].
* - `record` The first excess {@link CollectionChangeRecord}.
*/
_truncate(record:CollectionChangeRecord) {
// Anything after that needs to be removed;
@ -588,7 +588,7 @@ class _DuplicateItemRecordList {
}
/**
* Remove one [CollectionChangeRecord] from the list of duplicates.
* Remove one {@link CollectionChangeRecord} from the list of duplicates.
*
* Returns whether the list of duplicates is empty.
*/
@ -651,7 +651,7 @@ class _DuplicateMap {
}
/**
* Removes an [CollectionChangeRecord] from the list of duplicates.
* Removes a {@link CollectionChangeRecord} from the list of duplicates.
*
* The list of duplicates also is removed from the map if it gets empty.
*/

View File

@ -1,5 +1,5 @@
/**
* Indicates that the result of a [Pipe] transformation has not changed since the last time the pipe was called.
* Indicates that the result of a {@link Pipe} transformation has not changed since the last time the pipe was called.
*
* Suppose we have a pipe that computes changes in an array by performing a simple diff operation. If
* we call this pipe with the same array twice, it will return `NO_CHANGE` the second time.
@ -12,7 +12,7 @@ export var NO_CHANGE = new Object();
/**
* An interface for extending the list of pipes known to Angular.
*
* If you are writing a custom [Pipe], you must extend this interface.
* If you are writing a custom {@link Pipe}, you must extend this interface.
*
* #Example
*