diff options
author | Vincent Ambo <mail@tazj.in> | 2022-08-12T13·01+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-08-26T16·32+0000 |
commit | 6c5d0344d9762644c4f182705c62defa1bf8759d (patch) | |
tree | d6bf78195d568632ac65bbfb956824570ab7c6b0 | |
parent | 15c2986597771d2c355e7893fed8932072959f71 (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.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(); |