From 2579aa874ff9f464a3f8791cefc7bf17715f8e20 Mon Sep 17 00:00:00 2001 From: raskad <32105367+raskad@users.noreply.github.com> Date: Sun, 15 Dec 2024 18:39:03 +0000 Subject: [PATCH] fix doc comment --- core/engine/src/vm/opcode/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/engine/src/vm/opcode/mod.rs b/core/engine/src/vm/opcode/mod.rs index d1f908f89f5..f0d49513274 100644 --- a/core/engine/src/vm/opcode/mod.rs +++ b/core/engine/src/vm/opcode/mod.rs @@ -1117,7 +1117,7 @@ generate_opcodes! { /// Find a binding in the global object and push its value. /// - /// Operands: index: `u32` + /// Operands: index: `VaryingOperand`, ic_index: `VaryingOperand`, /// /// Stack: **=>** value GetNameGlobal { index: VaryingOperand, ic_index: VaryingOperand },