src/core: Fix speling issues

Found by codespell
This commit is contained in:
Erik Ekman
2023-10-14 18:16:49 +02:00
parent 8c1190143c
commit 5e3268cf3e
10 changed files with 11 additions and 10 deletions

View File

@@ -1176,7 +1176,7 @@ nd6_tmr(void)
/** Send a neighbor solicitation message for a specific neighbor cache entry
*
* @param entry the neightbor cache entry for which to send the message
* @param entry the neighbor cache entry for which to send the message
* @param flags one of ND6_SEND_FLAG_*
*/
static void
@@ -1707,7 +1707,7 @@ nd6_select_router(const ip6_addr_t *ip6addr, struct netif *netif)
/* Look for valid routers. A reachable router is preferred. */
valid_router = -1;
for (i = 0; i < LWIP_ND6_NUM_ROUTERS; i++) {
/* Is the router netif both set and apppropriate? */
/* Is the router netif both set and appropriate? */
if (default_router_list[i].neighbor_entry != NULL) {
router_netif = default_router_list[i].neighbor_entry->netif;
if ((router_netif != NULL) && (netif != NULL ? netif == router_netif :