git: d3d3b76c1b61 - main - linux(4): Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Sat, 16 Jul 2022 11:39:30 UTC
The branch main has been updated by gbe (doc committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=d3d3b76c1b614b54d255e4248c45f43b20d519b8

commit d3d3b76c1b614b54d255e4248c45f43b20d519b8
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-07-16 11:39:17 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-07-16 11:39:17 +0000

    linux(4): Fix a typo in a source code comment
    
    - s/alredy/already/
    
    MFC after:      3 days
---
 sys/compat/linux/linux_signal.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/compat/linux/linux_signal.c b/sys/compat/linux/linux_signal.c
index a1bbfa2cfa07..09bcbcef4427 100644
--- a/sys/compat/linux/linux_signal.c
+++ b/sys/compat/linux/linux_signal.c
@@ -705,7 +705,7 @@ void
 siginfo_to_lsiginfo(const siginfo_t *si, l_siginfo_t *lsi, l_int sig)
 {
 
-	/* sig alredy converted */
+	/* sig already converted */
 	lsi->lsi_signo = sig;
 	sicode_to_lsicode(sig, si->si_code, &lsi->lsi_code);