git: d7c0432456e1 - stable/12 - tcp_hpts: Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Sat, 14 Jan 2023 09:36:22 UTC
The branch stable/12 has been updated by gbe (doc committer):

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

commit d7c0432456e13f984190f9c4d26f21ada0b7e1fb
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2023-01-11 10:33:29 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2023-01-14 09:34:27 +0000

    tcp_hpts: Fix a typo in a source code comment
    
    - s/subract/subtract/
    
    (cherry picked from commit d68f15420528e11f69a7bda365608581bfc34e64)
---
 sys/netinet/tcp_hpts.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/netinet/tcp_hpts.c b/sys/netinet/tcp_hpts.c
index 1ea0bd1148f9..1b556445f8b0 100644
--- a/sys/netinet/tcp_hpts.c
+++ b/sys/netinet/tcp_hpts.c
@@ -755,7 +755,7 @@ max_ticks_available(struct tcp_hpts_entry *hpts, uint32_t wheel_tick, uint32_t *
 	}
 	/* 
 	 * To get the number left we can insert into we simply
-	 * subract the distance the pacer has to run from how
+	 * subtract the distance the pacer has to run from how
 	 * many slots there are.
 	 */
 	avail_on_wheel = NUM_OF_HPTSI_SLOTS - dis_to_travel;