summaryrefslogtreecommitdiff
path: root/src/library/grid.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-02-10 10:29:17 +0100
committerLaurenz <laurmaedje@gmail.com>2022-02-10 10:29:17 +0100
commit624471db619240f0eed849b92dff6a525ce7e547 (patch)
treeb6218c031019a78a99c7bb99fcbbe40918e6f2d7 /src/library/grid.rs
parent6e198bf7606847b0847487a4847d6a3ee3621d2d (diff)
Proper error messages for shorthands
Diffstat (limited to 'src/library/grid.rs')
-rw-r--r--src/library/grid.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/grid.rs b/src/library/grid.rs
index f85e5d56..c9904a5f 100644
--- a/src/library/grid.rs
+++ b/src/library/grid.rs
@@ -27,7 +27,7 @@ impl GridNode {
column_gutter.unwrap_or_else(|| base_gutter.clone()),
row_gutter.unwrap_or(base_gutter),
),
- children: args.all().collect(),
+ children: args.all()?,
}))
}
}