From c0b82b7d8d453629bc394623b0d57c26b5bd252a Mon Sep 17 00:00:00 2001 From: Nishchya3Verma Date: Tue, 23 May 2023 21:40:06 +0530 Subject: [PATCH] docs(api-docs/material-table): fixed description for MatHeaderRow Issue : Description under MatHeaderRow extends CdkHeaderRow is Footer template container that contains the cell outlet. Adds the right class and role. However it should be, Header template container that contains the cell outlet. Adds the right class and role. --- src/material/table/row.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/material/table/row.ts b/src/material/table/row.ts index 9b8e43163bc4..c96b99a64de6 100644 --- a/src/material/table/row.ts +++ b/src/material/table/row.ts @@ -52,7 +52,7 @@ export class MatFooterRowDef extends CdkFooterRowDef {} }) export class MatRowDef extends CdkRowDef {} -/** Footer template container that contains the cell outlet. Adds the right class and role. */ +/** Header template container that contains the cell outlet. Adds the right class and role. */ @Component({ selector: 'mat-header-row, tr[mat-header-row]', template: CDK_ROW_TEMPLATE,