Skip to content

Commit c408ed9

Browse files
committed
py/mpconfig.h: Remove spaces in "Micro Python" and remove blank line.
1 parent a926119 commit c408ed9

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

py/mpconfig.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Micro Python project, http://micropython.org/
2+
* This file is part of the MicroPython project, http://micropython.org/
33
*
44
* The MIT License (MIT)
55
*
@@ -51,13 +51,13 @@
5151
/*****************************************************************************/
5252
/* Object representation */
5353

54-
// A Micro Python object is a machine word having the following form:
54+
// A MicroPython object is a machine word having the following form:
5555
// - xxxx...xxx1 : a small int, bits 1 and above are the value
5656
// - xxxx...xx10 : a qstr, bits 2 and above are the value
5757
// - xxxx...xx00 : a pointer to an mp_obj_base_t (unless a fake object)
5858
#define MICROPY_OBJ_REPR_A (0)
5959

60-
// A Micro Python object is a machine word having the following form:
60+
// A MicroPython object is a machine word having the following form:
6161
// - xxxx...xx01 : a small int, bits 2 and above are the value
6262
// - xxxx...xx11 : a qstr, bits 2 and above are the value
6363
// - xxxx...xxx0 : a pointer to an mp_obj_base_t (unless a fake object)
@@ -73,7 +73,6 @@
7373
// Str and float stored as O = R + 0x80800000, retrieved as R = O - 0x80800000.
7474
// This makes strs easier to encode/decode as they have zeros in the top 9 bits.
7575
// This scheme only works with 32-bit word size and float enabled.
76-
7776
#define MICROPY_OBJ_REPR_C (2)
7877

7978
// A MicroPython object is a 64-bit word having the following form (called R):
@@ -235,7 +234,7 @@
235234
#endif
236235

237236
/*****************************************************************************/
238-
/* Micro Python emitters */
237+
/* MicroPython emitters */
239238

240239
// Whether to support loading of persistent code
241240
#ifndef MICROPY_PERSISTENT_CODE_LOAD

0 commit comments

Comments
 (0)