From e1ba9c630d4054bf95fc69b67e24617cd02f6ce0 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Tue, 28 Oct 2025 21:52:41 -0700 Subject: [PATCH] important note --- src/compiler/compiler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/compiler.ts b/src/compiler/compiler.ts index c22e117..bbedc09 100644 --- a/src/compiler/compiler.ts +++ b/src/compiler/compiler.ts @@ -472,7 +472,7 @@ export class Compiler { const children = getAllChildren(node) // We can easily parse [=] as an empty dict, but `[ = ]` is tougher. - // = can be a valid word, and also valid in words, so for now we cheat + // = can be a valid word, and is also valid inside words, so for now we cheat // and check for arrays that look like `[ = ]` to interpret them as // empty dicts if (children.length === 1 && children[0]!.name === 'Word') {