Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Mar 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions components/layout_2020/table/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down