Skip to content

Commit 41f580f

Browse files
authored
core/vm: fix typo in CLZ doc (#32604)
Fixes typo in CLZ doc.
1 parent 5d09aa3 commit 41f580f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/vm/eips.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ func opBlobBaseFee(pc *uint64, evm *EVM, scope *ScopeContext) ([]byte, error) {
294294
return nil, nil
295295
}
296296

297-
// opCLZ implements the CLZ opcode (count leading zero bytes)
297+
// opCLZ implements the CLZ opcode (count leading zero bits)
298298
func opCLZ(pc *uint64, evm *EVM, scope *ScopeContext) ([]byte, error) {
299299
x := scope.Stack.peek()
300300
x.SetUint64(256 - uint64(x.BitLen()))

0 commit comments

Comments
 (0)