From f770aba99a3097fa02e8d2863edd98ff2baa53e9 Mon Sep 17 00:00:00 2001 From: latent-9 <296084221+latent-9@users.noreply.github.com> Date: Sun, 9 Aug 2026 14:14:22 +1200 Subject: [PATCH] Fix typo in doc comment --- syscall_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syscall_windows.go b/syscall_windows.go index 1e2ba8cb..7b85dd73 100644 --- a/syscall_windows.go +++ b/syscall_windows.go @@ -21,7 +21,7 @@ func syscall_syscallN(fn uintptr, args ...uintptr) (r1, r2, err uintptr) { // function with one uintptr-sized result. The function must not have arguments with size larger than the // size of uintptr. Only a limited number of callbacks may be created in a single Go process, and any memory // allocated for these callbacks is never released. Between NewCallback and NewCallbackCDecl, at least 1024 -// callbacks can always be created. Although this function is similiar to the darwin version it may act +// callbacks can always be created. Although this function is similar to the darwin version it may act // differently. func NewCallback(fn any) uintptr { isCDecl := false