aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2024-12-28 06:39:50 +0000
committerGordon Bergling <gbe@FreeBSD.org>2024-12-28 06:41:50 +0000
commit15ce9a0544e9d850fb332b4bae3313ff38584d61 (patch)
tree4e55e65b54cc8ae9466346624f9bd2600ab1c214
parentd40330306cd000c7c64dc18a3634ac8e04b33fdd (diff)
-rw-r--r--sys/kern/sys_process.c2
1 files changed, 1 insertions, 1 deletions
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;