git: e63ded38ebb8 - stable/13 - tcp_hpts: Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 14 Jan 2023 09:27:42 UTC
The branch stable/13 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=e63ded38ebb8700b9906257a0cac64586828d624
commit e63ded38ebb8700b9906257a0cac64586828d624
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:27:03 +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 c9ce91efc607..a2069dce7b0b 100644
--- a/sys/netinet/tcp_hpts.c
+++ b/sys/netinet/tcp_hpts.c
@@ -781,7 +781,7 @@ max_slots_available(struct tcp_hpts_entry *hpts, uint32_t wheel_slot, 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;