py: Fix typo in comment.
This commit is contained in:
parent
bd36873362
commit
84edec4fad
2
py/vm.c
2
py/vm.c
@ -980,7 +980,7 @@ unwind_jump:;
|
||||
DECODE_UINT;
|
||||
// unum & 0xff == n_positional
|
||||
// (unum >> 8) & 0xff == n_keyword
|
||||
// We have folowing stack layout here:
|
||||
// We have following stack layout here:
|
||||
// fun self arg0 arg1 ... kw0 val0 kw1 val1 ... seq dict <- TOS
|
||||
sp -= (unum & 0xff) + ((unum >> 7) & 0x1fe) + 3;
|
||||
#if MICROPY_STACKLESS
|
||||
|
Loading…
x
Reference in New Issue
Block a user