py: Fix typo in comment.

This commit is contained in:
Scott Shawcroft 2016-11-04 17:57:57 -07:00 committed by Scott Shawcroft
parent bd36873362
commit 84edec4fad

View File

@ -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