From 6c5d0344d9762644c4f182705c62defa1bf8759d Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 12 Aug 2022 16:01:13 +0300 Subject: [PATCH] style(tvix/eval): minor rephrasing in a comment From cl/6070 Change-Id: I8ce8c1b40032d85cd2c01b04e225ae4a2842c7b7 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6172 Tested-by: BuildkiteCI Reviewed-by: sterni --- tvix/eval/src/compiler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();