diff options
author | Christian Clauss <cclauss@me.com> | 2025-02-18 13:24:11 +0100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2025-02-25 16:11:33 +1100 |
commit | 5e206fdeb5225ce24efb9411cc879bafaa04b86f (patch) | |
tree | a7f26a550a7fa45ecc804108fad216f1004acec3 /extmod/modlwip.c | |
parent | 8b1ed4473dd215d564498f577cb6f3339c3c2e57 (diff) |
all: Upgrade codespell to v2.4.1.
This commit upgrades from codespell==2.2.6 to the current codespell==2.4.1,
adding emac to the ignore-words-list.
Signed-off-by: Christian Clauss <cclauss@me.com>
Diffstat (limited to 'extmod/modlwip.c')
-rw-r--r-- | extmod/modlwip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/modlwip.c b/extmod/modlwip.c index bcccd363e..f109e0029 100644 --- a/extmod/modlwip.c +++ b/extmod/modlwip.c @@ -476,7 +476,7 @@ static void _lwip_tcp_err_unaccepted(void *arg, err_t err) { // because it's only ever used by lwIP if tcp_connect is called on the TCP PCB. lwip_socket_obj_t *socket = (lwip_socket_obj_t *)pcb->connected; - // Array is not volatile because thiss callback is executed within the lwIP context + // Array is not volatile because this callback is executed within the lwIP context uint8_t alloc = socket->incoming.connection.alloc; struct tcp_pcb **tcp_array = (struct tcp_pcb **)lwip_socket_incoming_array(socket); |