git: 9c5f4c4f9576 - main - sys: Fix typo (triple S)

From: Warner Losh <imp_at_FreeBSD.org>
Date: Thu, 28 Dec 2023 03:26:26 UTC
The branch main has been updated by imp:

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

commit 9c5f4c4f9576398f4a1819b72d4703e58023b85b
Author:     Jose Luis Duran <jlduran@gmail.com>
AuthorDate: 2023-12-28 03:17:17 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-12-28 03:24:32 +0000

    sys: Fix typo (triple S)
    
    Reviewed by: imp
    Pull Request: https://github.com/freebsd/freebsd-src/pull/955
---
 sys/sys/sched.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/sys/sched.h b/sys/sys/sched.h
index 9d37e8f0f999..fd84b987d9b1 100644
--- a/sys/sys/sched.h
+++ b/sys/sys/sched.h
@@ -213,7 +213,7 @@ SYSINIT(name, SI_SUB_LAST, SI_ORDER_MIDDLE, name ## _add_proc, NULL);
     SCHED_STAT_DEFINE_VAR(name, &DPCPU_NAME(name), descr)
 /*
  * Sched stats are always incremented in critical sections so no atomic
- * is necesssary to increment them.
+ * is necessary to increment them.
  */
 #define SCHED_STAT_INC(var)     DPCPU_GET(var)++;
 #else