git: 15ce9a0544e9 - main - kern: Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 28 Dec 2024 06:43:20 UTC
The branch main has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=15ce9a0544e9d850fb332b4bae3313ff38584d61
commit 15ce9a0544e9d850fb332b4bae3313ff38584d61
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2024-12-28 06:39:50 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2024-12-28 06:41:50 +0000
kern: Fix a typo in a source code comment
- s/explicity/explicitly/
MFC after: 3 days
---
sys/kern/sys_process.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/kern/sys_process.c b/sys/kern/sys_process.c
index fe2e112dbcfa..581f8f65ec56 100644
--- a/sys/kern/sys_process.c
+++ b/sys/kern/sys_process.c
@@ -355,7 +355,7 @@ proc_rwmem(struct proc *p, struct uio *uio)
/*
* If we are writing, then we request vm_fault() to create a private
* copy of each page. Since these copies will not be writeable by the
- * process, we must explicity request that they be dirtied.
+ * process, we must explicitly request that they be dirtied.
*/
writing = uio->uio_rw == UIO_WRITE;
reqprot = writing ? VM_PROT_COPY | VM_PROT_READ : VM_PROT_READ;