py/mpconfig.h: Remove spaces in "Micro Python" and remove blank line.

This commit is contained in:
Damien George 2017-06-26 12:29:20 +10:00
parent a926119099
commit c408ed9fb1

View File

@ -73,7 +73,6 @@
// Str and float stored as O = R + 0x80800000, retrieved as R = O - 0x80800000. // 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 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. // This scheme only works with 32-bit word size and float enabled.
#define MICROPY_OBJ_REPR_C (2) #define MICROPY_OBJ_REPR_C (2)
// A MicroPython object is a 64-bit word having the following form (called R): // A MicroPython object is a 64-bit word having the following form (called R):