From d8e4a1b93f6c0e609811b4f9f863180d7ef16c92 Mon Sep 17 00:00:00 2001 From: Isaac Andrade Date: Fri, 23 Aug 2024 20:02:44 -0600 Subject: [PATCH] Fix comment typo on POSIX ENOTSUP constant. Co-authored-by: Feoramund <161657516+Feoramund@users.noreply.github.com> --- core/sys/posix/errno.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/sys/posix/errno.odin b/core/sys/posix/errno.odin index c064c0001..91afa4799 100644 --- a/core/sys/posix/errno.odin +++ b/core/sys/posix/errno.odin @@ -456,7 +456,7 @@ when ODIN_OS == .Darwin { EOWNERDEAD :: 130 ENOTRECOVERABLE :: 131 - // NOTE: Note defined for linux + // NOTE: Not defined for Linux ENOTSUP :: -1 } else { #panic("posix is unimplemented for the current target")