From bbf571e5af3672632993b2d055f7cc08635b4cbc Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Wed, 13 Aug 2025 09:14:58 +0900 Subject: [PATCH] wasi_socket_ext.c: fix a typo in a comment (#4552) --- core/iwasm/libraries/lib-socket/src/wasi/wasi_socket_ext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/iwasm/libraries/lib-socket/src/wasi/wasi_socket_ext.c b/core/iwasm/libraries/lib-socket/src/wasi/wasi_socket_ext.c index 8f80e0bbb..2a4b4a721 100644 --- a/core/iwasm/libraries/lib-socket/src/wasi/wasi_socket_ext.c +++ b/core/iwasm/libraries/lib-socket/src/wasi/wasi_socket_ext.c @@ -18,7 +18,7 @@ * * wasi-libc's errno is a TLS variable, exposed directly via * errno.h. if we use it here, LLVM may lower it differently, - * depending on enabled features like atomcs and bulk-memory. + * depending on enabled features like atomics and bulk-memory. * we tweak the way to access errno here in order to make us * compatible with both of threaded and non-threaded applications. * __errno_location() should be reasonably stable because