summaryrefslogtreecommitdiff
path: root/src/library/structure
diff options
context:
space:
mode:
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>,
}