git: 452661c96721 - main - exit1(): fix a comment typo

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Sat, 05 Aug 2023 00:43:11 UTC
The branch main has been updated by emaste:

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

commit 452661c96721e0f8a8117f21b679016b6ec2c59c
Author:     Igor Ostapenko <pm@igoro.pro>
AuthorDate: 2023-08-03 11:49:27 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2023-08-05 00:42:07 +0000

    exit1(): fix a comment typo
    
    Signed-off-by: Igor Ostapenko <pm@igoro.pro>
    Reviewed by:    emaste
    Pull Request:   https://github.com/freebsd/freebsd-src/pull/809
---
 sys/kern/kern_exit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/kern/kern_exit.c b/sys/kern/kern_exit.c
index a92d5cc0f642..cb0939ded6e1 100644
--- a/sys/kern/kern_exit.c
+++ b/sys/kern/kern_exit.c
@@ -691,7 +691,7 @@ exit1(struct thread *td, int rval, int signo)
 	prison_proc_free(p->p_ucred->cr_prison);
 
 	/*
-	 * The state PRS_ZOMBIE prevents other proesses from sending
+	 * The state PRS_ZOMBIE prevents other processes from sending
 	 * signal to the process, to avoid memory leak, we free memory
 	 * for signal queue at the time when the state is set.
 	 */