summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorandvar <andvar@NetBSD.org>2021-12-12 11:18:46 +0000
committerandvar <andvar@NetBSD.org>2021-12-12 11:18:46 +0000
commitd9e475d86524d2b0e8ece9869a7a8e656c27dae4 (patch)
tree307f60938a31e3bf9d9d43db67e9ac19f1206c8d /bin
parent128c505bc8c8fa932356e32568f3b8ed82b9e0cd (diff)
s/Miscelaneous/Miscellaneous/ and s/slahes/slashes/ in comments.
Diffstat (limited to 'bin')
-rw-r--r--bin/sh/miscbltin.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/sh/miscbltin.c b/bin/sh/miscbltin.c
index 51fdd7c688d..47d8ba169fd 100644
--- a/bin/sh/miscbltin.c
+++ b/bin/sh/miscbltin.c
@@ -1,4 +1,4 @@
-/* $NetBSD: miscbltin.c,v 1.46 2021/11/16 11:27:50 kre Exp $ */
+/* $NetBSD: miscbltin.c,v 1.47 2021/12/12 11:18:46 andvar Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -37,12 +37,12 @@
#if 0
static char sccsid[] = "@(#)miscbltin.c 8.4 (Berkeley) 5/4/95";
#else
-__RCSID("$NetBSD: miscbltin.c,v 1.46 2021/11/16 11:27:50 kre Exp $");
+__RCSID("$NetBSD: miscbltin.c,v 1.47 2021/12/12 11:18:46 andvar Exp $");
#endif
#endif /* not lint */
/*
- * Miscelaneous builtins.
+ * Miscellaneous builtins.
*/
#include <sys/types.h> /* quad_t */
@@ -71,7 +71,7 @@ __RCSID("$NetBSD: miscbltin.c,v 1.46 2021/11/16 11:27:50 kre Exp $");
/*
* The read builtin.
- * Backslahes escape the next char unless -r is specified.
+ * Backslashes escape the next char unless -r is specified.
*
* This uses unbuffered input, which may be avoidable in some cases.
*