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') {