From b8d77d2490b1c1f5581e69139f2f523e2f7a554f Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Mon, 2 Sep 2024 16:32:15 +0900 Subject: [PATCH] chore: update linux.c3 Recieve -> Receive --- lib/std/net/os/linux.c3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/net/os/linux.c3 b/lib/std/net/os/linux.c3 index 161fc1c90..e82ca9eef 100644 --- a/lib/std/net/os/linux.c3 +++ b/lib/std/net/os/linux.c3 @@ -22,7 +22,7 @@ const int SO_ERROR = 4; const int SO_DONTROUTE = 5; // just use interface addresses const int SO_BROADCAST = 6; // permit sending of broadcast msgs const int SO_SNDBUF = 7; // Send buffer size -const int SO_RCVBUF = 8; // Recieve buffer size +const int SO_RCVBUF = 8; // Receive buffer size const int SO_KEEPALIVE = 9; // keep connections alive const int SO_OOBINLINE = 10; // leave received OOB data in line const int SO_NO_CHECK = 11;