Skip to content

Commit 5bc6b15

Browse files
Florian Grandelcarlescufi
authored andcommitted
net: fix minor typos
This change just fixes some insignificant typos. Signed-off-by: Florian Grandel <[email protected]>
1 parent 178bdc4 commit 5bc6b15

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/connectivity/networking/api/net_pkt.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ chosen).
318318
NET_PKT_DATA_ACCESS_CONTIGUOUS_DEFINE(ipv4_access, struct net_ipv4_hdr);
319319
struct net_ipv4_hdr *ipv4_hdr;
320320
321-
ipv4_hdr = (struct net_ipv4_hdr *)net_pkt_get_data(pkt, &ipv4_acess);
321+
ipv4_hdr = (struct net_ipv4_hdr *)net_pkt_get_data(pkt, &ipv4_access);
322322
323323
It would be the same for struct net_ipv4_hdr. For a UDP header it
324324
is likely not to be in a contiguous area in IPv6

include/zephyr/net/net_l2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ enum net_l2_flags {
3434
/** IP multicast supported */
3535
NET_L2_MULTICAST = BIT(0),
3636

37-
/** Do not joint solicited node multicast group */
37+
/** Do not join solicited node multicast group */
3838
NET_L2_MULTICAST_SKIP_JOIN_SOLICIT_NODE = BIT(1),
3939

4040
/** Is promiscuous mode supported */

0 commit comments

Comments
 (0)