Skip to content

Commit 84edec4

Browse files
committed
py: Fix typo in comment.
1 parent bd36873 commit 84edec4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/vm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -980,7 +980,7 @@ unwind_jump:;
980980
DECODE_UINT;
981981
// unum & 0xff == n_positional
982982
// (unum >> 8) & 0xff == n_keyword
983-
// We have folowing stack layout here:
983+
// We have following stack layout here:
984984
// fun self arg0 arg1 ... kw0 val0 kw1 val1 ... seq dict <- TOS
985985
sp -= (unum & 0xff) + ((unum >> 7) & 0x1fe) + 3;
986986
#if MICROPY_STACKLESS

0 commit comments

Comments
 (0)