git: a7f5cf209634 - main - kthread(9): Add a missing space
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 04 Jun 2022 18:15:20 UTC
The branch main has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=a7f5cf2096346076ef16bed9c40b21d3d7a7bd8f
commit a7f5cf2096346076ef16bed9c40b21d3d7a7bd8f
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-06-04 18:15:07 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-06-04 18:15:07 +0000
kthread(9): Add a missing space
- s/inthe/in the/
MFC after: 3 days
---
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 **,