all: Fix various spelling mistakes found by codespell 2.2.6.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George
2023-10-03 11:24:50 +11:00
parent 9d5d2e8cf7
commit cf490a7091
20 changed files with 22 additions and 22 deletions

View File

@@ -504,7 +504,7 @@ STATIC int bluetooth_gatts_register_service(mp_obj_t uuid_in, mp_obj_t character
// How many descriptors in the flattened list per characteristic.
uint8_t *num_descriptors = m_new(uint8_t, len);
// Inititally allocate enough room for the number of characteristics.
// Initially allocate enough room for the number of characteristics.
// Will be grown to accommodate descriptors as necessary.
*num_handles = len;
*handles = m_new(uint16_t, *num_handles);