git: 7a8585c0737f - stable/13 - stand: Fix a common typo in source code comments

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Fri, 10 Jun 2022 12:33:41 UTC
The branch stable/13 has been updated by gbe (doc committer):

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

commit 7a8585c0737ff13327fc91db3f4f9b2b91184ea8
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-06-05 07:49:51 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-06-10 12:23:25 +0000

    stand: Fix a common typo in source code comments
    
    - s/independant/independent/
    
    (cherry picked from commit c44b5e090d84f911551d038f61e7cf798a843b8c)
---
 stand/common/isapnp.c | 2 +-
 stand/libsa/zalloc.c  | 2 +-
 stand/loader.mk       | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/stand/common/isapnp.c b/stand/common/isapnp.c
index 16eb0b9ea6b2..8a0cdfda2ace 100644
--- a/stand/common/isapnp.c
+++ b/stand/common/isapnp.c
@@ -29,7 +29,7 @@
 __FBSDID("$FreeBSD$");
 
 /*
- * Machine-independant ISA PnP enumerator implementing a subset of the
+ * Machine-independent ISA PnP enumerator implementing a subset of the
  * ISA PnP specification.
  */
 #include <stand.h>
diff --git a/stand/libsa/zalloc.c b/stand/libsa/zalloc.c
index e914b7ffb40b..851cdfbd563d 100644
--- a/stand/libsa/zalloc.c
+++ b/stand/libsa/zalloc.c
@@ -217,7 +217,7 @@ zfree(MemPool *mp, void *ptr, uintptr_t bytes)
 			}
 
 			/*
-			 * merge against next area or create independant area
+			 * merge against next area or create independent area
 			 */
 
 			if ((char *)ptr + bytes == (char *)mn) {
diff --git a/stand/loader.mk b/stand/loader.mk
index 85d3aad326de..2246b42b91d8 100644
--- a/stand/loader.mk
+++ b/stand/loader.mk
@@ -65,7 +65,7 @@ SRCS+=	md.c
 CLEANFILES+=	md.o
 .endif
 
-# Machine-independant ISA PnP
+# Machine-independent ISA PnP
 .if defined(HAVE_ISABUS)
 SRCS+=	isapnp.c
 .endif