git: 9f8836fd9d9f - stable/15 - sys/kern: Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Mon, 14 Sep 2026 04:02:59 UTC
The branch stable/15 has been updated by gbe:

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

commit 9f8836fd9d9fad65395b1495bf4afc8f651c6e16
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2026-09-11 16:30:10 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2026-09-14 04:02:47 +0000

    sys/kern: Fix a typo in a source code comment
    
    - s/untill/until/
    
    (cherry picked from commit 8255ae9a750f6de312f9b445c25b1c8caf3d95b7)
---
 sys/kern/kern_sysctl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/kern/kern_sysctl.c b/sys/kern/kern_sysctl.c
index 4adbd71fae24..51a6530ee522 100644
--- a/sys/kern/kern_sysctl.c
+++ b/sys/kern/kern_sysctl.c
@@ -191,7 +191,7 @@ sysctl_root_handler_locked(struct sysctl_oid *oid, void *arg1, intmax_t arg2,
 
 	/*
 	 * Treat set CTLFLAG_NEEDGIANT and unset CTLFLAG_MPSAFE flags the same,
-	 * untill we're ready to remove all traces of Giant from sysctl(9).
+	 * until we're ready to remove all traces of Giant from sysctl(9).
 	 */
 	if ((oid->oid_kind & CTLFLAG_NEEDGIANT) ||
 	    (!(oid->oid_kind & CTLFLAG_MPSAFE)))