git: ab04ef09cfd7 - stable/13 - netgraph: Fix two typos in source code comments

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Tue, 23 Jan 2024 06:48:12 UTC
The branch stable/13 has been updated by gbe:

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

commit ab04ef09cfd7aa9c1c3c6437e82eb2eed0a88c77
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2024-01-20 16:22:28 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2024-01-23 06:47:19 +0000

    netgraph: Fix two typos in source code comments
    
    - s/bascially/basically/
    - s/simpliest/simplest/
    
    (cherry picked from commit 7037ebe63dd1a2ff2a818359c58ca24b6d44388a)
---
 sys/netgraph/ng_sample.h | 2 +-
 sys/netgraph/ng_tag.c    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/netgraph/ng_sample.h b/sys/netgraph/ng_sample.h
index 994f322cf05a..f7f7cb417626 100644
--- a/sys/netgraph/ng_sample.h
+++ b/sys/netgraph/ng_sample.h
@@ -73,7 +73,7 @@ struct ngxxxstat {
 
 /*
  * This is used to define the 'parse type' for a struct ngxxxstat, which
- * is bascially a description of how to convert a binary struct ngxxxstat
+ * is basically a description of how to convert a binary struct ngxxxstat
  * to an ASCII string and back.  See ng_parse.h for more info.
  *
  * This needs to be kept in sync with the above structure definition
diff --git a/sys/netgraph/ng_tag.c b/sys/netgraph/ng_tag.c
index accbe2d8452f..cc8b0a8f7536 100644
--- a/sys/netgraph/ng_tag.c
+++ b/sys/netgraph/ng_tag.c
@@ -258,7 +258,7 @@ NETGRAPH_INIT(tag, &typestruct);
  * One could ask why to have this structures at all when we have
  * ng_tag_hookinfo initialized to zero and don't need in and out structures
  * at all to operate.  Unfortunatelly, we have to return thisHook field
- * in response to messages so the fastest and simpliest way is to have
+ * in response to messages so the fastest and simplest way is to have
  * this default structures and initialize thisHook once at hook creation
  * rather than to do it on every response.
  */