git: b6ae2ec7b032 - main - sh(1): Fix typo

From: Warner Losh <imp_at_FreeBSD.org>
Date: Tue, 26 Dec 2023 17:48:33 UTC
The branch main has been updated by imp:

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

commit b6ae2ec7b03250cc22cd9bf64044d113ec64d9f1
Author:     Kai-Yang Chen <kevin.1010607@gapp.nthu.edu.tw>
AuthorDate: 2023-12-26 17:33:20 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-12-26 17:44:33 +0000

    sh(1): Fix typo
    
    Event: Advanced UNIX Programming Course (Fall’23) at NTHU.
    Reviewed by: imp, @rilysh on github
    Pull Request: https://github.com/freebsd/freebsd-src/pull/935
---
 bin/sh/memalloc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/sh/memalloc.c b/bin/sh/memalloc.c
index 7850bb147b01..9c50156e8e00 100644
--- a/bin/sh/memalloc.c
+++ b/bin/sh/memalloc.c
@@ -283,7 +283,7 @@ growstackblock(int min)
 
 
 /*
- * The following routines are somewhat easier to use that the above.
+ * The following routines are somewhat easier to use than the above.
  * The user declares a variable of type STACKSTR, which may be declared
  * to be a register.  The macro STARTSTACKSTR initializes things.  Then
  * the user uses the macro STPUTC to add characters to the string.  In