aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2024-01-20 16:22:28 +0000
committerGordon Bergling <gbe@FreeBSD.org>2024-01-23 06:47:19 +0000
commitab04ef09cfd7aa9c1c3c6437e82eb2eed0a88c77 (patch)
tree2c55a2a440a233953c6717f51db8c2336fc07892 /sys/netgraph
parentda3ddd852917ff49b96a49f7b916aecf950ca323 (diff)
downloadsrc-ab04ef09cfd7aa9c1c3c6437e82eb2eed0a88c77.tar.gz
src-ab04ef09cfd7aa9c1c3c6437e82eb2eed0a88c77.zip
netgraph: Fix two typos in source code comments
- s/bascially/basically/ - s/simpliest/simplest/ (cherry picked from commit 7037ebe63dd1a2ff2a818359c58ca24b6d44388a)
Diffstat (limited to 'sys/netgraph')
-rw-r--r--sys/netgraph/ng_sample.h2
-rw-r--r--sys/netgraph/ng_tag.c2
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.
*/