diff options
author | Damien George <damien@micropython.org> | 2023-10-03 11:24:50 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2023-10-03 11:24:50 +1100 |
commit | cf490a70917a1b2d38ba9b58e763e0837d0f7ca7 (patch) | |
tree | fd460c9323dd46b4466193fc56dc319cbf717c77 /extmod/modbluetooth.c | |
parent | 9d5d2e8cf71321b4ba41bad127bf0ea0ff24ccbf (diff) |
all: Fix various spelling mistakes found by codespell 2.2.6.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'extmod/modbluetooth.c')
-rw-r--r-- | extmod/modbluetooth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/modbluetooth.c b/extmod/modbluetooth.c index 7b13f9556..3417df7a2 100644 --- a/extmod/modbluetooth.c +++ b/extmod/modbluetooth.c @@ -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); |