Skip to content

Commit aa1cf5b

Browse files
andrewseguintinayuangao
authored andcommitted
docs(table): fix typo in addRowDef/removeRowDef (#9720)
1 parent 01f35ab commit aa1cf5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cdk/table/table.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,12 +330,12 @@ export class CdkTable<T> implements CollectionViewer, OnInit, AfterContentChecke
330330
this._customColumnDefs.delete(columnDef);
331331
}
332332

333-
/** Adds a column definition that was not included as part of the direct content children. */
333+
/** Adds a row definition that was not included as part of the direct content children. */
334334
addRowDef(rowDef: CdkRowDef<T>) {
335335
this._customRowDefs.add(rowDef);
336336
}
337337

338-
/** Removes a column definition that was not included as part of the direct content children. */
338+
/** Removes a row definition that was not included as part of the direct content children. */
339339
removeRowDef(rowDef: CdkRowDef<T>) {
340340
this._customRowDefs.delete(rowDef);
341341
}

0 commit comments

Comments
 (0)