git: 7d1482319475 - stable/13 - kern: Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 31 Dec 2024 09:36:26 UTC
The branch stable/13 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=7d14823194752e41f3a10b9282ff04bb8cff16cd commit 7d14823194752e41f3a10b9282ff04bb8cff16cd Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2024-12-28 06:39:50 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2024-12-31 09:34:59 +0000 kern: Fix a typo in a source code comment - s/explicity/explicitly/ (cherry picked from commit 15ce9a0544e9d850fb332b4bae3313ff38584d61) --- 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 2eaeabb6a5f9..57fa6d0c0323 100644 --- a/sys/kern/sys_process.c +++ b/sys/kern/sys_process.c @@ -348,7 +348,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;