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

URL: 
https://cgit.FreeBSD.org/src/commit/?id=665709016d5e280ca7497958b25f341302e7fb25

commit 665709016d5e280ca7497958b25f341302e7fb25
Author:     Gordon Bergling <[email protected]>
AuthorDate: 2022-04-09 07:03:29 +0000
Commit:     Gordon Bergling <[email protected]>
CommitDate: 2022-04-09 07:12:48 +0000

    tcp_bbr(4): Fix two typos in source code comments
    
    - s/postive/positive/
    - s/postion/position/
    
    MFC after:      3days
---
 sys/netinet/tcp_stacks/bbr.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/netinet/tcp_stacks/bbr.c b/sys/netinet/tcp_stacks/bbr.c
index a9459d4b4517..9d0118abfa40 100644
--- a/sys/netinet/tcp_stacks/bbr.c
+++ b/sys/netinet/tcp_stacks/bbr.c
@@ -3167,7 +3167,7 @@ reset_all:
                        return;
                }
                if (bbr_lt_intvl_fp == 0) {
-                       /* Not doing false-postive detection */
+                       /* Not doing false-positive detection */
                        return;
                }
                /* False positive detection */
@@ -4455,7 +4455,7 @@ bbr_sack_mergable(struct bbr_sendmap *at,
 {
        /*
         * Given a sack block defined by
-        * start and end, and a current postion
+        * start and end, and a current position
         * at. Return 1 if either side of at
         * would show that the block is mergable
         * to that side. A block to be mergable

Reply via email to