fix(tvix/eval): change ordinary (//) to rustdoc-comments (///)

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
This commit is contained in:
Adam Joseph 2022-10-25 02:00:02 -07:00 committed by clbot
parent 1cccf002bc
commit 89854e2331

View file

@ -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,