summaryrefslogtreecommitdiffstatshomepage
path: root/py
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-03-03 21:37:37 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-03-03 21:37:50 +0200
commite104acdb8ccd53963f5415edc8c9ab88aeca771a (patch)
treeaac14203d404481614df9d2e3c162272d2277b98 /py
parent72ddcfd9fffaafc4c971de4e7cb4bf97289e7de7 (diff)
downloadmicropython-e104acdb8ccd53963f5415edc8c9ab88aeca771a.tar.gz
micropython-e104acdb8ccd53963f5415edc8c9ab88aeca771a.zip
runtime: Typo fixes in comments.
Diffstat (limited to 'py')
-rw-r--r--py/runtime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/py/runtime.c b/py/runtime.c
index c1ce9fb88c..13a70ffc86 100644
--- a/py/runtime.c
+++ b/py/runtime.c
@@ -585,8 +585,8 @@ mp_obj_t mp_call_method_n_kw_var(bool have_self, mp_uint_t n_args_n_kw, const mp
}
uint n_args = n_args_n_kw & 0xff;
uint n_kw = (n_args_n_kw >> 8) & 0xff;
- mp_obj_t pos_seq = args[n_args + 2 * n_kw]; // map be MP_OBJ_NULL
- mp_obj_t kw_dict = args[n_args + 2 * n_kw + 1]; // map be MP_OBJ_NULL
+ mp_obj_t pos_seq = args[n_args + 2 * n_kw]; // may be MP_OBJ_NULL
+ mp_obj_t kw_dict = args[n_args + 2 * n_kw + 1]; // may be MP_OBJ_NULL
DEBUG_OP_printf("call method var (fun=%p, self=%p, n_args=%u, n_kw=%u, args=%p, seq=%p, dict=%p)\n", fun, self, n_args, n_kw, args, pos_seq, kw_dict);