diff --git a/tvix/eval/src/compiler.rs b/tvix/eval/src/compiler.rs index de408c1c9..7685e2f08 100644 --- a/tvix/eval/src/compiler.rs +++ b/tvix/eval/src/compiler.rs @@ -32,7 +32,7 @@ impl Compiler { // type. rnix::SyntaxKind::NODE_ROOT => self.compile(node.first_child().expect("TODO")), - // Literals contain a single token comprising of the + // Literals contain a single token consisting of the // literal itself. rnix::SyntaxKind::NODE_LITERAL => { let value = rnix::types::Value::cast(node).unwrap();