SDL_net: Sync SDL2_net wiki -> header (05fee)

From 05feeca6687e8aa0e337e65384ffea7ebad5231c Mon Sep 17 00:00:00 2001
From: SDL Wiki Bot <[EMAIL REDACTED]>
Date: Mon, 9 Mar 2026 20:33:35 +0000
Subject: [PATCH] Sync SDL2_net wiki -> header

[ci skip]
---
 include/SDL_net.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/SDL_net.h b/include/SDL_net.h
index 1c4359e..102668e 100644
--- a/include/SDL_net.h
+++ b/include/SDL_net.h
@@ -606,7 +606,7 @@ extern DECLSPEC IPaddress * SDLCALL SDLNet_UDP_GetPeerAddress(UDPsocket sock, in
  * Send a vector of packets to the the channels specified within the packet.
  *
  * If the channel specified in the packet is -1, the packet will be sent to
- * the address in the `src` member of the packet.
+ * the address in the `address` member of the packet.
  *
  * Each packet will be updated with the status of the packet after it has been
  * sent, -1 if the packet send failed.
@@ -646,7 +646,7 @@ extern DECLSPEC int SDLCALL SDLNet_UDP_SendV(UDPsocket sock, UDPpacket **packets
  * Send a single UDP packet to the specified channel.
  *
  * If the channel specified is -1, the packet will be sent to the address in
- * the `src` member of the packet.
+ * the `address` member of the packet.
  *
  * The packet will be updated with the status of the packet after it has been
  * sent.