Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Dec 2024 06:43:20 GMT
From:      Gordon Bergling <gbe@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 15ce9a0544e9 - main - kern: Fix a typo in a source code comment
Message-ID:  <202412280643.4BS6hKb7072428@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202412280643.4BS6hKb7072428>