From 29c2d28b2b79d6070bd4f9febe5e34bf0c7b2c4d Mon Sep 17 00:00:00 2001 From: Robin Jadoul Date: Tue, 6 Jan 2026 11:34:43 +0100 Subject: [PATCH] spec: Fix constraint group lookup --- spec/chip.typ | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/chip.typ b/spec/chip.typ index 8be99ac2a..4291ca54c 100644 --- a/spec/chip.typ +++ b/spec/chip.typ @@ -160,7 +160,7 @@ groups = (groups,) } assert(groups.all(group => group in all_groups), message: "unknown group") - let selected_constraints = groups.map(g => (g: chip.constraints.at(g))).join() + let selected_constraints = groups.map(g => ((g): chip.constraints.at(g))).join() // Find the group definition in the constraint_groups let lookup_group(name) = chip.constraint_groups.filter((g) => g.name == name).at(0, default: (name: name))