summaryrefslogtreecommitdiff
path: root/extmod/modbluetooth.c
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2023-10-03 11:24:50 +1100
committerDamien George <damien@micropython.org>2023-10-03 11:24:50 +1100
commitcf490a70917a1b2d38ba9b58e763e0837d0f7ca7 (patch)
treefd460c9323dd46b4466193fc56dc319cbf717c77 /extmod/modbluetooth.c
parent9d5d2e8cf71321b4ba41bad127bf0ea0ff24ccbf (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.c2
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);