diff options
author | Vincent Ambo <mail@tazj.in> | 2023-03-11T20·21+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-03-13T20·30+0000 |
commit | e48a17a6b3a81d5fd6495b1168bcd07232c2dfd0 (patch) | |
tree | 2d05ecd61f6ac2ee72c18595fc3e9f13d7882d1c /tvix | |
parent | cc59cbf3e27efb01a2cf96dcd5d2a7be1bca9540 (diff) |
docs(tvix/eval): fix reference to `Empty` message in a comment r/5985
Change-Id: I3dc30cca33fbbd8e8686655635ee471f5937d9f8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8257 Tested-by: BuildkiteCI Reviewed-by: raitobezarius <tvl@lahfa.xyz>
Diffstat (limited to 'tvix')
-rw-r--r-- | tvix/eval/src/vm/generators.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/vm/generators.rs b/tvix/eval/src/vm/generators.rs index cddb18a406e1..19ffed840493 100644 --- a/tvix/eval/src/vm/generators.rs +++ b/tvix/eval/src/vm/generators.rs @@ -64,7 +64,7 @@ pub enum GeneratorRequest { /// stack for requesting a function call from the VM. /// /// The VM does not respond to this request, so the next message received is - /// a `NoOp`. + /// `Empty`. StackPush(Value), /// Pop a value from the stack and return it to the generator. |