From 52540d8412630edb2c64f4fcca1c1165bcce1ac3 Mon Sep 17 00:00:00 2001 From: Daniel Mangum Date: Fri, 11 Oct 2024 08:46:23 -0400 Subject: [PATCH] net: fix note about source address in net_context Removes extraneous word in note on net_context struct describing why the source address is not stored directly in struct. Signed-off-by: Daniel Mangum --- include/zephyr/net/net_context.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/zephyr/net/net_context.h b/include/zephyr/net/net_context.h index 48536b3c4d57b5..430c1164f40479 100644 --- a/include/zephyr/net/net_context.h +++ b/include/zephyr/net/net_context.h @@ -200,7 +200,7 @@ struct net_conn_handle; /** * Note that we do not store the actual source IP address in the context - * because the address is already be set in the network interface struct. + * because the address is already set in the network interface struct. * If there is no such source address there, the packet cannot be sent * anyway. This saves 12 bytes / context in IPv6. */