summaryrefslogtreecommitdiff
path: root/py/vm.c
diff options
context:
space:
mode:
authorScott Shawcroft <scott@chickadee.tech>2016-11-04 17:57:57 -0700
committerScott Shawcroft <scott.shawcroft@gmail.com>2016-11-18 16:17:56 -0800
commit84edec4fad653b914ea2a3b56f0bc5c0548a68e4 (patch)
tree687fb46d446741b038d0e426575916bc22f430c7 /py/vm.c
parentbd368733625551b1071b91f6bb0876a1bfcf06ff (diff)
py: Fix typo in comment.
Diffstat (limited to 'py/vm.c')
-rw-r--r--py/vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/vm.c b/py/vm.c
index 363824e5f..e1efba47c 100644
--- a/py/vm.c
+++ b/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