summaryrefslogtreecommitdiff
path: root/library/src/layout/grid.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-02-12 16:38:14 +0100
committerLaurenz <laurmaedje@gmail.com>2023-02-12 16:38:18 +0100
commitebbee6274cafa6865a0d9123b78cae305c3c12aa (patch)
treeb3c982a5a46a3dcfc8cce642eacf252a0901f183 /library/src/layout/grid.rs
parent6260878245bdf81d7b928777e4fc1018c6651878 (diff)
Fix square base
Diffstat (limited to 'library/src/layout/grid.rs')
-rw-r--r--library/src/layout/grid.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/src/layout/grid.rs b/library/src/layout/grid.rs
index d488430f..da8c4fca 100644
--- a/library/src/layout/grid.rs
+++ b/library/src/layout/grid.rs
@@ -321,7 +321,7 @@ impl<'a, 'v> GridLayouter<'a, 'v> {
let rcols = vec![Abs::zero(); cols.len()];
let lrows = vec![];
- // We use the regions for auto row measurement. Since at that moment,
+ // We use these regions for auto row measurement. Since at that moment,
// columns are already sized, we can enable horizontal expansion.
let mut regions = regions.clone();
regions.expand = Axes::new(true, false);