summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorandvar <andvar@NetBSD.org>2022-05-23 19:21:30 +0000
committerandvar <andvar@NetBSD.org>2022-05-23 19:21:30 +0000
commit2eb0e5849d3290a61c7e83591cf3795752afedbd (patch)
tree79640e5494a4071d4236f783b58a6d43f9e10372 /lib/libc/stdlib
parentdc43f848b16a9d8f377f2a6ef4df17be23b97a5d (diff)
s/beggining/beginning/ in comments.
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/strfmon.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/strfmon.c b/lib/libc/stdlib/strfmon.c
index 36324a0baaa..f5053e04235 100644
--- a/lib/libc/stdlib/strfmon.c
+++ b/lib/libc/stdlib/strfmon.c
@@ -1,4 +1,4 @@
-/* $NetBSD: strfmon.c,v 1.15 2022/04/19 20:32:16 rillig Exp $ */
+/* $NetBSD: strfmon.c,v 1.16 2022/05/23 19:21:30 andvar Exp $ */
/*-
* Copyright (c) 2001 Alexey Zelkin <phantom@FreeBSD.org>
@@ -32,7 +32,7 @@
#if 0
__FBSDID("$FreeBSD: src/lib/libc/stdlib/strfmon.c,v 1.14 2003/03/20 08:18:55 ache Exp $");
#else
-__RCSID("$NetBSD: strfmon.c,v 1.15 2022/04/19 20:32:16 rillig Exp $");
+__RCSID("$NetBSD: strfmon.c,v 1.16 2022/05/23 19:21:30 andvar Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -563,7 +563,7 @@ __format_grouped_double(struct lconv *lc, double value, int *flags,
}
bufend = rslt + bufsize - 1; /* reserve space for trailing '\0' */
- /* skip spaces at beggining */
+ /* skip spaces at beginning */
padded = 0;
while (avalue[padded] == ' ') {
padded++;