git: 4161e83f5ef5 - stable/14 - sys/kern: Fix a typo in a source code comment

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

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

commit 4161e83f5ef56b107adb364a07f72575040a238d
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:03:29 +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 b0201a6fc3e0..0e8193af559d 100644
--- a/sys/kern/kern_sysctl.c
+++ b/sys/kern/kern_sysctl.c
@@ -193,7 +193,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)))