git: 7037ebe63dd1 - main - netgraph: Fix two typos in source code comments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 20 Jan 2024 16:24:39 UTC
The branch main has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=7037ebe63dd1a2ff2a818359c58ca24b6d44388a
commit 7037ebe63dd1a2ff2a818359c58ca24b6d44388a
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2024-01-20 16:22:28 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2024-01-20 16:22:28 +0000
netgraph: Fix two typos in source code comments
- s/bascially/basically/
- s/simpliest/simplest/
MFC after: 3 days
---
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 ea84148e59ef..31417417c0ed 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.
*/