Module Name: src
Committed By: rillig
Date: Tue Feb 8 20:39:59 UTC 2022
Modified Files:
src/bin/sh: histedit.c
Log Message:
sh: fix typo in comment
To generate a diff of this commit:
cvs rdiff -u -r1.60 -r1.61 src/bin/sh/histedit.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/bin/sh/histedit.c
diff -u src/bin/sh/histedit.c:1.60 src/bin/sh/histedit.c:1.61
--- src/bin/sh/histedit.c:1.60 Wed Feb 2 01:21:34 2022
+++ src/bin/sh/histedit.c Tue Feb 8 20:39:59 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: histedit.c,v 1.60 2022/02/02 01:21:34 kre Exp $ */
+/* $NetBSD: histedit.c,v 1.61 2022/02/08 20:39:59 rillig Exp $ */
/*-
* Copyright (c) 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)histedit.c 8.2 (Berkeley) 5/4/95";
#else
-__RCSID("$NetBSD: histedit.c,v 1.60 2022/02/02 01:21:34 kre Exp $");
+__RCSID("$NetBSD: histedit.c,v 1.61 2022/02/08 20:39:59 rillig Exp $");
#endif
#endif /* not lint */
@@ -133,7 +133,7 @@ histedit(void)
* This odd piece of code doesn't affect the shell
* at all, the environment modified here is the
* stuff accessed via "environ" (the incoming
- * envoironment to the shell) which is only ever
+ * environment to the shell) which is only ever
* touched at sh startup time (long before we get
* here) and ignored thereafter.
*