git: f56d1a1d6137 - stable/15 - igc(4): Fix a typo in a sysctl description

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Sat, 08 Nov 2025 19:01:53 UTC
The branch stable/15 has been updated by gbe:

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

commit f56d1a1d613781b63a70849f520f1fc9ba9e8b7c
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-10-29 15:38:03 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-11-08 19:01:43 +0000

    igc(4): Fix a typo in a sysctl description
    
    - s/Recevied/Received/
    
    (cherry picked from commit defe77554d134964d7c197a2f3ca552778e8b41a)
---
 sys/dev/igc/if_igc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/igc/if_igc.c b/sys/dev/igc/if_igc.c
index a1ae35c7aa43..8c9ec0566a38 100644
--- a/sys/dev/igc/if_igc.c
+++ b/sys/dev/igc/if_igc.c
@@ -2816,7 +2816,7 @@ igc_add_hw_stats(struct igc_softc *sc)
 	    "Oversized Packets Received");
 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "recv_jabber",
 	    CTLFLAG_RD, &sc->stats.rjc,
-	    "Recevied Jabber");
+	    "Received Jabber");
 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "recv_errs",
 	    CTLFLAG_RD, &sc->stats.rxerrc,
 	    "Receive Errors");