@@ -50,14 +50,14 @@ export type _ViewRepeaterItemContextFactory<T, R, C extends _ViewRepeaterItemCon
50
50
) => _ViewRepeaterItemInsertArgs < C > ;
51
51
52
52
/**
53
- * Extracts the value of an item from an { @link IterableChangeRecord} .
53
+ * Extracts the value of an item from an ` IterableChangeRecord` .
54
54
*
55
55
* @template T The type for the embedded view's $implicit property.
56
56
* @template R The type for the item in each IterableDiffer change record.
57
57
*/
58
58
export type _ViewRepeaterItemValueResolver < T , R > = ( record : IterableChangeRecord < R > ) => T ;
59
59
60
- /** Indicates how a view was changed by a { @link _ViewRepeater} . */
60
+ /** Indicates how a view was changed by a ` _ViewRepeater` . */
61
61
export enum _ViewRepeaterOperation {
62
62
/** The content of an existing view was replaced with another item. */
63
63
REPLACED ,
@@ -70,8 +70,7 @@ export enum _ViewRepeaterOperation {
70
70
}
71
71
72
72
/**
73
- * Meta data describing the state of a view after it was updated by a
74
- * {@link _ViewRepeater}.
73
+ * Meta data describing the state of a view after it was updated by a `_ViewRepeater`.
75
74
*
76
75
* @template R The type for the item in each IterableDiffer change record.
77
76
* @template C The type for the context passed to each embedded view.
@@ -94,7 +93,7 @@ export interface _ViewRepeaterItemChange<R, C> {
94
93
export type _ViewRepeaterItemChanged < R , C > = ( change : _ViewRepeaterItemChange < R , C > ) => void ;
95
94
96
95
/**
97
- * Describes a strategy for rendering items in a { @link ViewContainerRef} .
96
+ * Describes a strategy for rendering items in a ` ViewContainerRef` .
98
97
*
99
98
* @template T The type for the embedded view's $implicit property.
100
99
* @template R The type for the item in each IterableDiffer change record.
@@ -113,7 +112,7 @@ export interface _ViewRepeater<T, R, C extends _ViewRepeaterItemContext<T>> {
113
112
}
114
113
115
114
/**
116
- * Injection token for { @link _ViewRepeater} . This token is for use by Angular Material only.
115
+ * Injection token for ` _ViewRepeater` . This token is for use by Angular Material only.
117
116
* @docs -private
118
117
*/
119
118
export const _VIEW_REPEATER_STRATEGY = new InjectionToken <
0 commit comments