@@ -50,14 +50,14 @@ export type _ViewRepeaterItemContextFactory<T, R, C extends _ViewRepeaterItemCon
5050) => _ViewRepeaterItemInsertArgs < C > ;
5151
5252/**
53- * Extracts the value of an item from an { @link IterableChangeRecord} .
53+ * Extracts the value of an item from an ` IterableChangeRecord` .
5454 *
5555 * @template T The type for the embedded view's $implicit property.
5656 * @template R The type for the item in each IterableDiffer change record.
5757 */
5858export type _ViewRepeaterItemValueResolver < T , R > = ( record : IterableChangeRecord < R > ) => T ;
5959
60- /** Indicates how a view was changed by a { @link _ViewRepeater} . */
60+ /** Indicates how a view was changed by a ` _ViewRepeater` . */
6161export enum _ViewRepeaterOperation {
6262 /** The content of an existing view was replaced with another item. */
6363 REPLACED ,
@@ -70,8 +70,7 @@ export enum _ViewRepeaterOperation {
7070}
7171
7272/**
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`.
7574 *
7675 * @template R The type for the item in each IterableDiffer change record.
7776 * @template C The type for the context passed to each embedded view.
@@ -94,7 +93,7 @@ export interface _ViewRepeaterItemChange<R, C> {
9493export type _ViewRepeaterItemChanged < R , C > = ( change : _ViewRepeaterItemChange < R , C > ) => void ;
9594
9695/**
97- * Describes a strategy for rendering items in a { @link ViewContainerRef} .
96+ * Describes a strategy for rendering items in a ` ViewContainerRef` .
9897 *
9998 * @template T The type for the embedded view's $implicit property.
10099 * @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>> {
113112}
114113
115114/**
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.
117116 * @docs -private
118117 */
119118export const _VIEW_REPEATER_STRATEGY = new InjectionToken <
0 commit comments