aboutsummaryrefslogtreecommitdiff
path: root/py/modthread.c
diff options
context:
space:
mode:
authorDavid Lechner <david@pybricks.com>2020-01-24 15:23:44 -0600
committerDamien George <damien.p.george@gmail.com>2020-01-31 23:57:25 +1100
commit3e1bbeabafc08ec0c9b6349b416aed306ef8a7c8 (patch)
tree14b0d94ddc2784826bd1eece9d9c2c9400455493 /py/modthread.c
parente3ff52863ba927b75fce1b219145f921134b49f6 (diff)
py/modthread: Fix spelling error in comment.
Diffstat (limited to 'py/modthread.c')
-rw-r--r--py/modthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/modthread.c b/py/modthread.c
index 91237a72b..5a9aba55f 100644
--- a/py/modthread.c
+++ b/py/modthread.c
@@ -249,7 +249,7 @@ STATIC mp_obj_t mod_thread_start_new_thread(size_t n_args, const mp_obj_t *args)
}
}
- // copy agross the positional arguments
+ // copy across the positional arguments
th_args->n_args = pos_args_len;
memcpy(th_args->args, pos_args_items, pos_args_len * sizeof(mp_obj_t));