diff options
-rw-r--r-- | tvix/eval/src/compiler.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/compiler.rs b/tvix/eval/src/compiler.rs index de408c1c9781..7685e2f08c22 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(); |