rustdoc: Fix some typos in components/layout_2020/table/mod.rs (#31644)

Co-authored-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
Ekta Siwach 2024-03-19 13:53:14 +05:30 committed by GitHub
parent 06a021db55
commit 03c11f7907
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -92,14 +92,14 @@ pub struct Table {
/// The column groups for this table.
pub column_groups: Vec<TableTrackGroup>,
/// The columns of this tabled defined by `<colgroup> | display: table-column-group`
/// The columns of this table defined by `<colgroup> | display: table-column-group`
/// and `<col> | display: table-column` elements as well as `display: table-column`.
pub columns: Vec<TableTrack>,
/// The rows groups for this table deinfed by `<tbody>`, `<thead>`, and `<tfoot>`.
/// The rows groups for this table defined by `<tbody>`, `<thead>`, and `<tfoot>`.
pub row_groups: Vec<TableTrackGroup>,
/// The rows of this tabled defined by `<tr>` or `display: table-row` elements.
/// The rows of this table defined by `<tr>` or `display: table-row` elements.
pub rows: Vec<TableTrack>,
/// The content of the slots of this table.