diff options
Diffstat (limited to 'tvix/eval/src/opcode.rs')
-rw-r--r-- | tvix/eval/src/opcode.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tvix/eval/src/opcode.rs b/tvix/eval/src/opcode.rs index e05e91087a6f..0ed0ceb020dd 100644 --- a/tvix/eval/src/opcode.rs +++ b/tvix/eval/src/opcode.rs @@ -148,11 +148,11 @@ pub enum OpCode { OpCall, OpTailCall, OpGetUpvalue(UpvalueIdx), - // A Closure which has upvalues but no self-references + /// A Closure which has upvalues but no self-references OpClosure(ConstantIdx), - // A Closure which has self-references (direct or via upvalues) + /// A Closure which has self-references (direct or via upvalues) OpThunkClosure(ConstantIdx), - // A suspended thunk, used to ensure laziness + /// A suspended thunk, used to ensure laziness OpThunkSuspended(ConstantIdx), OpForce, |