The branch stable/13 has been updated by gbe (doc committer):

URL: 
https://cgit.FreeBSD.org/src/commit/?id=361faf208f8c3f8c1de352c043803a852d3b5bff

commit 361faf208f8c3f8c1de352c043803a852d3b5bff
Author:     Gordon Bergling <[email protected]>
AuthorDate: 2022-04-09 06:53:17 +0000
Commit:     Gordon Bergling <[email protected]>
CommitDate: 2022-04-14 06:02:03 +0000

    kern: Fix a typo in a source code comment
    
    - s/is is/is/
    
    (cherry picked from commit 768f9b8b8bf7ca2f0b45bf6d7fde1a38f800c68d)
---
 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 b39cc635e778..341c94cc80aa 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 6c01b3dc817c..753e0062e808 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -1588,7 +1588,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