summaryrefslogtreecommitdiffstatshomepage
path: root/py/mpconfig.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-06-26 12:29:20 +1000
committerDamien George <damien.p.george@gmail.com>2017-06-26 12:29:20 +1000
commitc408ed9fb1e9922bedb02b9b4b3b441d6db8dc74 (patch)
tree422fff0c92606fda4365041d8afe229f93a29cae /py/mpconfig.h
parenta926119099bae885a8f1f031c2cc4eacbf785df2 (diff)
downloadmicropython-c408ed9fb1e9922bedb02b9b4b3b441d6db8dc74.tar.gz
micropython-c408ed9fb1e9922bedb02b9b4b3b441d6db8dc74.zip
py/mpconfig.h: Remove spaces in "Micro Python" and remove blank line.
Diffstat (limited to 'py/mpconfig.h')
-rw-r--r--py/mpconfig.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h
index 1ec8ae21c8..32d64828d1 100644
--- a/py/mpconfig.h
+++ b/py/mpconfig.h
@@ -1,5 +1,5 @@
/*
- * This file is part of the Micro Python project, http://micropython.org/
+ * This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
@@ -51,13 +51,13 @@
/*****************************************************************************/
/* Object representation */
-// A Micro Python object is a machine word having the following form:
+// A MicroPython object is a machine word having the following form:
// - xxxx...xxx1 : a small int, bits 1 and above are the value
// - xxxx...xx10 : a qstr, bits 2 and above are the value
// - xxxx...xx00 : a pointer to an mp_obj_base_t (unless a fake object)
#define MICROPY_OBJ_REPR_A (0)
-// A Micro Python object is a machine word having the following form:
+// A MicroPython object is a machine word having the following form:
// - xxxx...xx01 : a small int, bits 2 and above are the value
// - xxxx...xx11 : a qstr, bits 2 and above are the value
// - xxxx...xxx0 : a pointer to an mp_obj_base_t (unless a fake object)
@@ -73,7 +73,6 @@
// Str and float stored as O = R + 0x80800000, retrieved as R = O - 0x80800000.
// This makes strs easier to encode/decode as they have zeros in the top 9 bits.
// This scheme only works with 32-bit word size and float enabled.
-
#define MICROPY_OBJ_REPR_C (2)
// A MicroPython object is a 64-bit word having the following form (called R):
@@ -235,7 +234,7 @@
#endif
/*****************************************************************************/
-/* Micro Python emitters */
+/* MicroPython emitters */
// Whether to support loading of persistent code
#ifndef MICROPY_PERSISTENT_CODE_LOAD