git: c9856c4ffbda - main - pfctl(8): Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Sat, 16 Jul 2022 11:48:41 UTC
The branch main has been updated by gbe (doc committer):

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

commit c9856c4ffbda670f3fdc03d4c046a70e3e225f68
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-07-16 11:48:30 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-07-16 11:48:30 +0000

    pfctl(8): Fix a typo in a source code comment
    
    - s/bufer/buffer/
    
    MFC after:      3 days
---
 sbin/pfctl/pfctl_altq.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sbin/pfctl/pfctl_altq.c b/sbin/pfctl/pfctl_altq.c
index 6d35ae77240f..66075258f106 100644
--- a/sbin/pfctl/pfctl_altq.c
+++ b/sbin/pfctl/pfctl_altq.c
@@ -1227,7 +1227,7 @@ char *
 rate2str(double rate)
 {
 	char		*buf;
-	static char	 r2sbuf[R2S_BUFS][RATESTR_MAX];  /* ring bufer */
+	static char	 r2sbuf[R2S_BUFS][RATESTR_MAX];  /* ring buffer */
 	static int	 idx = 0;
 	int		 i;
 	static const char unit[] = " KMG";