summaryrefslogtreecommitdiff
path: root/src/library/structure
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-11-02 14:48:51 +0100
committerLaurenz <laurmaedje@gmail.com>2022-11-02 14:48:51 +0100
commit56342bd972a13ffe21beaf2b87ab7eb1597704b4 (patch)
tree78f9549141e753dde4a938670c54f3fe8695a058 /src/library/structure
parent37ac5d966ebaf97ac79c507028cd5b742b510b89 (diff)
Move layout traits into library
Diffstat (limited to 'src/library/structure')
-rw-r--r--src/library/structure/table.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/structure/table.rs b/src/library/structure/table.rs
index d5e8920e..8a4eb302 100644
--- a/src/library/structure/table.rs
+++ b/src/library/structure/table.rs
@@ -8,7 +8,7 @@ pub struct TableNode {
pub tracks: Axes<Vec<TrackSizing>>,
/// Defines sizing of gutter rows and columns between content.
pub gutter: Axes<Vec<TrackSizing>>,
- /// The nodes to be arranged in the table.
+ /// The content to be arranged in the table.
pub cells: Vec<Content>,
}