From 89854e2331fde7caeecbb740c4165314d031932b Mon Sep 17 00:00:00 2001 From: Adam Joseph Date: Tue, 25 Oct 2022 02:00:02 -0700 Subject: fix(tvix/eval): change ordinary (//) to rustdoc-comments (///) This fixes a mistake I made in d978b556e6. Change-Id: I88db697105a7149e9785f6aface03bff68566d2b Signed-off-by: Adam Joseph Reviewed-on: https://cl.tvl.fyi/c/depot/+/7085 Reviewed-by: grfn Tested-by: BuildkiteCI --- tvix/eval/src/opcode.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tvix/eval/src/opcode.rs') 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, -- cgit 1.4.1