Skip to content

Commit 3a487c3

Browse files
committed
all: Fix spelling of Micropython -> MicroPython.
Signed-off-by: Damien George <damien@micropython.org>
1 parent 83996f0 commit 3a487c3

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

ports/mimxrt/machine_pwm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ static void configure_pwm(machine_pwm_obj_t *self) {
375375
}
376376
}
377377

378-
// Micropython API functions
378+
// MicroPython API functions
379379
//
380380
static void mp_machine_pwm_init_helper(machine_pwm_obj_t *self,
381381
size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {

ports/zephyr/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@ run the following after you built an image with the previous command:
211211
File Systems
212212
------------
213213

214-
The Zephyr Micropython port provides 2 options for handling filesystems on the device:
215-
The first is the Micropython filesystem management, which uses Micropython's filesystem code and
214+
The Zephyr MicroPython port provides 2 options for handling filesystems on the device:
215+
The first is the MicroPython filesystem management, which uses MicroPython's filesystem code and
216216
relies on zephyr's FlashArea API, this is enabled by default when
217217
`CONFIG_FLASH` and `CONFIG_FLASH_MAP` are turned on.
218218
The second option is using Zephyr's Filesystem management:
@@ -241,13 +241,13 @@ Then, a fstab must be added to the dts overlay, for example:
241241
};
242242
};
243243

244-
It is then possible to use the FS like a normal Micropython filesystem:
244+
It is then possible to use the FS like a normal MicroPython filesystem:
245245

246246
import vfs, zephyr
247247
zfs = zephyr.FileSystem(zephyr.FileSystem.fstab()[0])
248248
vfs.mount(zfs, "/zephyr")
249249

250-
You may disable Micropython's File system code to save space:
250+
You may disable MicroPython's File system code to save space:
251251

252252
CONFIG_MICROPY_VFS_FAT=n
253253
CONFIG_MICROPY_VFS_LFS1=n

ports/zephyr/src/usbd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ USBD_DEVICE_DEFINE(mp_usbd,
5656

5757
USBD_DESC_LANG_DEFINE(mp_lang);
5858
USBD_DESC_MANUFACTURER_DEFINE(mp_mfr, "Zephyr Project");
59-
USBD_DESC_PRODUCT_DEFINE(mp_product, "Micropython on Zephyr RTOS");
59+
USBD_DESC_PRODUCT_DEFINE(mp_product, "MicroPython on Zephyr RTOS");
6060
USBD_DESC_SERIAL_NUMBER_DEFINE(mp_sn);
6161

6262
USBD_DESC_CONFIG_DEFINE(fs_cfg_desc, "FS Configuration");

tools/mpremote/mpremote/mip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Micropython package installer
1+
# MicroPython package installer
22
# Ported from micropython-lib/micropython/mip/mip.py.
33
# MIT license; Copyright (c) 2022 Jim Mussared
44

0 commit comments

Comments
 (0)