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:
parent
1cccf002bc
commit
89854e2331
1 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
|
||||
|
|
Loading…
Reference in a new issue