about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAdam Joseph <adam@westernsemico.com>2022-10-25T09·00-0700
committerclbot <clbot@tvl.fyi>2022-11-05T22·07+0000
commit89854e2331fde7caeecbb740c4165314d031932b (patch)
tree2aca641f872987379cf81f06290750055a5e077b
parent1cccf002bc7c86e97fa20031347485715d38c00d (diff)
fix(tvix/eval): change ordinary (//) to rustdoc-comments (///) r/5252
This fixes a mistake I made in d978b556e6.

Change-Id: I88db697105a7149e9785f6aface03bff68566d2b
Signed-off-by: Adam Joseph <adam@westernsemico.com>
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7085
Reviewed-by: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
-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,