From c26fe81dd356491cb5aa9194147c80273d323497 Mon Sep 17 00:00:00 2001 From: Ewan Young Date: Fri, 29 May 2026 21:49:15 +0800 Subject: [PATCH v1] Fix typos in pqsignal.c comment Fix a misspelled word ("though" -> "through") and a duplicated word ("it it" -> "it") in the comment describing how signals are forwarded to the Windows native signal system. --- src/port/pqsignal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/port/pqsignal.c b/src/port/pqsignal.c index a8a1cd2074c..902ea5b55ea 100644 --- a/src/port/pqsignal.c +++ b/src/port/pqsignal.c @@ -204,8 +204,8 @@ pqsignal(int signo, pqsigfunc func) #else /* no USE_SIGACTION */ /* - * Forward to Windows native signal system, we need to send this though - * wrapper handler as it it needs to take single argument only. + * Forward to Windows native signal system, we need to send this through + * wrapper handler as it needs to take single argument only. */ if (is_ign) wrapper_func_ptr = SIG_IGN; -- 2.47.3