summaryrefslogtreecommitdiff
path: root/py/obj.c
diff options
context:
space:
mode:
authorGlenn Ruben Bakke <glennbakke@gmail.com>2017-06-03 23:23:08 +0200
committerGlenn Ruben Bakke <glennbakke@gmail.com>2017-06-03 23:23:08 +0200
commit227eeb1408cd442e896c33fd82d1d709ee9c95cd (patch)
tree7dfd4bf6894d59c299107960c47bace77cf166df /py/obj.c
parentd83c4fa130692ed9dbdfbe1bb8903da5721e7734 (diff)
parenta0dbbbebb8c0286e00ae06751b0173cbca4ec801 (diff)
Merge remote-tracking branch 'upstream/master' into nrf5_no_sdk
Diffstat (limited to 'py/obj.c')
-rw-r--r--py/obj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/obj.c b/py/obj.c
index 98ffa930b..493945a22 100644
--- a/py/obj.c
+++ b/py/obj.c
@@ -401,7 +401,7 @@ mp_obj_t mp_obj_id(mp_obj_t o_in) {
return MP_OBJ_NEW_SMALL_INT(id);
} else {
// If that didn't work, well, let's return long int, just as
- // a (big) positve value, so it will never clash with the range
+ // a (big) positive value, so it will never clash with the range
// of small int returned in previous case.
return mp_obj_new_int_from_uint((mp_uint_t)id);
}