diff options
| author | Scott Shawcroft <scott@chickadee.tech> | 2016-11-04 17:57:57 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott.shawcroft@gmail.com> | 2016-11-18 16:17:56 -0800 |
| commit | 84edec4fad653b914ea2a3b56f0bc5c0548a68e4 (patch) | |
| tree | 687fb46d446741b038d0e426575916bc22f430c7 /py/vm.c | |
| parent | bd368733625551b1071b91f6bb0876a1bfcf06ff (diff) | |
py: Fix typo in comment.
Diffstat (limited to 'py/vm.c')
| -rw-r--r-- | py/vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
