From 8cbd1cf03cc26161767eb26ebc0a65941ba1e3f6 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 11 Dec 2020 05:50:33 +1100 Subject: [PATCH] docs: fix simple typo, recieve -> receive There is a small typo in nx/include/switch/runtime/devices/socket.h, nx/include/switch/services/bsd.h. Should read `receive` rather than `recieve`. --- nx/include/switch/runtime/devices/socket.h | 2 +- nx/include/switch/services/bsd.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nx/include/switch/runtime/devices/socket.h b/nx/include/switch/runtime/devices/socket.h index 58ed9d68..3f0b3bcf 100644 --- a/nx/include/switch/runtime/devices/socket.h +++ b/nx/include/switch/runtime/devices/socket.h @@ -13,7 +13,7 @@ typedef struct { u32 bsdsockets_version; ///< Observed 1 on 2.0 LibAppletWeb, 2 on 3.0. u32 tcp_tx_buf_size; ///< Size of the TCP transfer (send) buffer (initial or fixed). - u32 tcp_rx_buf_size; ///< Size of the TCP recieve buffer (initial or fixed). + u32 tcp_rx_buf_size; ///< Size of the TCP receive buffer (initial or fixed). u32 tcp_tx_buf_max_size; ///< Maximum size of the TCP transfer (send) buffer. If it is 0, the size of the buffer is fixed to its initial value. u32 tcp_rx_buf_max_size; ///< Maximum size of the TCP receive buffer. If it is 0, the size of the buffer is fixed to its initial value. diff --git a/nx/include/switch/services/bsd.h b/nx/include/switch/services/bsd.h index 033f179d..08b1ae43 100644 --- a/nx/include/switch/services/bsd.h +++ b/nx/include/switch/services/bsd.h @@ -19,7 +19,7 @@ typedef struct { u32 version; ///< Observed 1 on [2.0.0+] LibAppletWeb, 2 on [3.0.0+]. u32 tcp_tx_buf_size; ///< Size of the TCP transfer (send) buffer (initial or fixed). - u32 tcp_rx_buf_size; ///< Size of the TCP recieve buffer (initial or fixed). + u32 tcp_rx_buf_size; ///< Size of the TCP receive buffer (initial or fixed). u32 tcp_tx_buf_max_size; ///< Maximum size of the TCP transfer (send) buffer. If it is 0, the size of the buffer is fixed to its initial value. u32 tcp_rx_buf_max_size; ///< Maximum size of the TCP receive buffer. If it is 0, the size of the buffer is fixed to its initial value.