git: 2e04d2239969 - stable/13 - kthread(9): Add a missing space

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Fri, 10 Jun 2022 12:34:08 UTC
The branch stable/13 has been updated by gbe (doc committer):

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

commit 2e04d223996959371a95e8e3cf063ff91fc3a7d9
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-06-04 18:15:07 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-06-10 12:29:07 +0000

    kthread(9): Add a missing space
    
    - s/inthe/in the/
    
    (cherry picked from commit a7f5cf2096346076ef16bed9c40b21d3d7a7bd8f)
---
 sys/sys/kthread.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/sys/kthread.h b/sys/sys/kthread.h
index 826472f4bb38..e16fe3e1b446 100644
--- a/sys/sys/kthread.h
+++ b/sys/sys/kthread.h
@@ -60,7 +60,7 @@ void	kproc_start(const void *);
 int	kproc_suspend(struct proc *, int);
 void	kproc_suspend_check(struct proc *);
 
-/* create a thread inthe given process. create the process if needed */
+/* create a thread in the given process. create the process if needed */
 int     kproc_kthread_add(void (*)(void *), void *,
 	    struct proc **,
 	    struct thread **,