git: 028ecc7aa1a0 - main - netisr(9): Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Sat, 03 Sep 2022 13:04:26 UTC
The branch main has been updated by gbe (doc committer):

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

commit 028ecc7aa1a06abdae96ba076189dc973d075042
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-09-03 13:04:15 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-09-03 13:04:15 +0000

    netisr(9): Fix a typo in a source code comment
    
    - s/overriden/overridden/
    
    MFC after:      3 days
---
 sys/net/netisr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/net/netisr.c b/sys/net/netisr.c
index 4d0bce3bedfc..9898e0b18caf 100644
--- a/sys/net/netisr.c
+++ b/sys/net/netisr.c
@@ -134,7 +134,7 @@ static SYSCTL_NODE(_net, OID_AUTO, isr, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
  * Three global direct dispatch policies are supported:
  *
  * NETISR_DISPATCH_DEFERRED: All work is deferred for a netisr, regardless of
- * context (may be overriden by protocols).
+ * context (may be overridden by protocols).
  *
  * NETISR_DISPATCH_HYBRID: If the executing context allows direct dispatch,
  * and we're running on the CPU the work would be performed on, then direct