mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
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:
parent
06a021db55
commit
03c11f7907
1 changed files with 3 additions and 3 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue