about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-08-12T13·01+0300
committertazjin <tazjin@tvl.su>2022-08-26T16·32+0000
commit6c5d0344d9762644c4f182705c62defa1bf8759d (patch)
treed6bf78195d568632ac65bbfb956824570ab7c6b0
parent15c2986597771d2c355e7893fed8932072959f71 (diff)
style(tvix/eval): minor rephrasing in a comment r/4502
From cl/6070

Change-Id: I8ce8c1b40032d85cd2c01b04e225ae4a2842c7b7
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6172
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
-rw-r--r--tvix/eval/src/compiler.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/compiler.rs b/tvix/eval/src/compiler.rs
index de408c1c97..7685e2f08c 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();