From adc80b8f8469874624a200acaddbed901bdd34ee Mon Sep 17 00:00:00 2001
From: Damien George <damien.p.george@gmail.com>
Date: Tue, 14 Feb 2017 20:55:31 +1100
Subject: [PATCH] py/objtype: Replace non-ASCII single-quote char with ASCII
 version.

---
 py/objtype.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/py/objtype.c b/py/objtype.c
index 85e10e762..60f630c3d 100644
--- a/py/objtype.c
+++ b/py/objtype.c
@@ -284,7 +284,7 @@ mp_obj_t mp_obj_instance_make_new(const mp_obj_type_t *self, size_t n_args, size
     }
 
     // https://docs.python.org/3.4/reference/datamodel.html#object.__new__
-    // "If __new__() does not return an instance of cls, then the new instance’s __init__() method will not be invoked."
+    // "If __new__() does not return an instance of cls, then the new instance's __init__() method will not be invoked."
     if (mp_obj_get_type(new_ret) != self) {
         return new_ret;
     }
-- 
GitLab