@@ -217,28 +217,28 @@ export class CdkTable<T> implements AfterContentChecked, CollectionViewer, OnDes
217217 /**
218218 * Column definitions that were defined outside of the direct content children of the table.
219219 * These will be defined when, e.g., creating a wrapper around the cdkTable that has
220- * column definitions as *it's * content child.
220+ * column definitions as *its * content child.
221221 */
222222 private _customColumnDefs = new Set < CdkColumnDef > ( ) ;
223223
224224 /**
225225 * Data row definitions that were defined outside of the direct content children of the table.
226226 * These will be defined when, e.g., creating a wrapper around the cdkTable that has
227- * built-in data rows as *it's * content child.
227+ * built-in data rows as *its * content child.
228228 */
229229 private _customRowDefs = new Set < CdkRowDef < T > > ( ) ;
230230
231231 /**
232232 * Header row definitions that were defined outside of the direct content children of the table.
233233 * These will be defined when, e.g., creating a wrapper around the cdkTable that has
234- * built-in header rows as *it's * content child.
234+ * built-in header rows as *its * content child.
235235 */
236236 private _customHeaderRowDefs = new Set < CdkHeaderRowDef > ( ) ;
237237
238238 /**
239239 * Footer row definitions that were defined outside of the direct content children of the table.
240240 * These will be defined when, e.g., creating a wrapper around the cdkTable that has a
241- * built-in footer row as *it's * content child.
241+ * built-in footer row as *its * content child.
242242 */
243243 private _customFooterRowDefs = new Set < CdkFooterRowDef > ( ) ;
244244
0 commit comments