git: 13bd8f011116 - stable/14 - 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:33:26 UTC
The branch stable/14 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=13bd8f011116e29311e300321f002af97cc73667 commit 13bd8f011116e29311e300321f002af97cc73667 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:32:24 +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 a45d5b065382..a6cc9a36643b 100644 --- a/sys/kern/sys_process.c +++ b/sys/kern/sys_process.c @@ -367,7 +367,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;