The branch main has been updated by gbe (doc committer):

URL: 
https://cgit.FreeBSD.org/src/commit/?id=768f9b8b8bf7ca2f0b45bf6d7fde1a38f800c68d

commit 768f9b8b8bf7ca2f0b45bf6d7fde1a38f800c68d
Author:     Gordon Bergling <[email protected]>
AuthorDate: 2022-04-09 06:53:17 +0000
Commit:     Gordon Bergling <[email protected]>
CommitDate: 2022-04-09 07:14:14 +0000

    kern: Fix a typo in a source code comment
    
    - s/is is/is/
    
    MFC after:      3 days
---
 sys/kern/kern_prot.c | 2 +-
 sys/kern/vfs_subr.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/kern/kern_prot.c b/sys/kern/kern_prot.c
index 808dd04ba1d3..fbe7117cde88 100644
--- a/sys/kern/kern_prot.c
+++ b/sys/kern/kern_prot.c
@@ -1761,7 +1761,7 @@ p_candebug(struct thread *td, struct proc *p)
        if ((p->p_flag & P_INEXEC) != 0)
                return (EBUSY);
 
-       /* Denied explicitely */
+       /* Denied explicitly */
        if ((p->p_flag2 & P2_NOTRACE) != 0) {
                error = priv_check(td, PRIV_DEBUG_DENIED);
                if (error != 0)
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c
index 6d7d189e1dd6..bbb429085a24 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -1565,7 +1565,7 @@ vnlru_proc(void)
                if (usevnodes <= 0)
                        usevnodes = 1;
                /*
-                * The trigger value is is chosen to give a conservatively
+                * The trigger value is chosen to give a conservatively
                 * large value to ensure that it alone doesn't prevent
                 * making progress.  The value can easily be so large that
                 * it is effectively infinite in some congested and

Reply via email to