py/modthread: Fix spelling error in comment.

pull/5598/head
David Lechner 2020-01-24 15:23:44 -06:00 zatwierdzone przez Damien George
rodzic e3ff52863b
commit 3e1bbeabaf
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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));