git: 27c4abc7cde0 - main - inet(3): Fix two typos in sysctl descriptions

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Tue, 30 Nov 2021 09:22:54 UTC
The branch main has been updated by gbe (doc committer):

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

commit 27c4abc7cde0be8f9fdd8ac7725e9910b0cbf5d4
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2021-11-30 09:21:47 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2021-11-30 09:21:47 +0000

    inet(3): Fix two typos in sysctl descriptions
    
    - s/sequental/sequential/
    
    MFC after:      3 days
---
 sys/netinet/in_pcb.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c
index b8b5c6fbdcd5..9dd2aee11bf0 100644
--- a/sys/netinet/in_pcb.c
+++ b/sys/netinet/in_pcb.c
@@ -216,11 +216,11 @@ SYSCTL_INT(_net_inet_ip_portrange, OID_AUTO, randomized,
 SYSCTL_INT(_net_inet_ip_portrange, OID_AUTO, randomcps,
 	CTLFLAG_VNET | CTLFLAG_RW,
 	&VNET_NAME(ipport_randomcps), 0, "Maximum number of random port "
-	"allocations before switching to a sequental one");
+	"allocations before switching to a sequential one");
 SYSCTL_INT(_net_inet_ip_portrange, OID_AUTO, randomtime,
 	CTLFLAG_VNET | CTLFLAG_RW,
 	&VNET_NAME(ipport_randomtime), 0,
-	"Minimum time to keep sequental port "
+	"Minimum time to keep sequential port "
 	"allocation before switching to a random one");
 
 #ifdef RATELIMIT