about summary refs log tree commit diff
path: root/tvix/eval/src/opcode.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/eval/src/opcode.rs')
-rw-r--r--tvix/eval/src/opcode.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tvix/eval/src/opcode.rs b/tvix/eval/src/opcode.rs
index e05e91087a..0ed0ceb020 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,