Skip to content

Commit adc80b8

Browse files
committed
py/objtype: Replace non-ASCII single-quote char with ASCII version.
1 parent 0c821f7 commit adc80b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/objtype.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ mp_obj_t mp_obj_instance_make_new(const mp_obj_type_t *self, size_t n_args, size
284284
}
285285

286286
// https://docs.python.org/3.4/reference/datamodel.html#object.__new__
287-
// "If __new__() does not return an instance of cls, then the new instances __init__() method will not be invoked."
287+
// "If __new__() does not return an instance of cls, then the new instance's __init__() method will not be invoked."
288288
if (mp_obj_get_type(new_ret) != self) {
289289
return new_ret;
290290
}

0 commit comments

Comments
 (0)