Fix sfall opcode comments

This commit is contained in:
Alexander Batalov 2023-05-30 09:12:51 +03:00
parent fe0d767521
commit 681b7c388b
1 changed files with 2 additions and 2 deletions

View File

@ -536,7 +536,7 @@ static void opGetMessage(Program* program)
programStackPushString(program, text);
}
// get_array_key
// array_key
static void opGetArrayKey(Program* program)
{
auto index = programStackPopInteger(program);
@ -597,7 +597,7 @@ static void opStackArray(Program* program)
programStackPushInteger(program, returnValue);
}
// scan array
// scan_array
static void opScanArray(Program* program)
{
auto value = programStackPopValue(program);