Module Name:    src
Committed By:   kre
Date:           Mon Aug  9 11:29:30 UTC 2021

Modified Files:
        src/bin/sh: var.c

Log Message:
Fix the fix to a typo in one of the comments.


To generate a diff of this commit:
cvs rdiff -u -r1.79 -r1.80 src/bin/sh/var.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/var.c
diff -u src/bin/sh/var.c:1.79 src/bin/sh/var.c:1.80
--- src/bin/sh/var.c:1.79	Sun Aug  8 20:50:12 2021
+++ src/bin/sh/var.c	Mon Aug  9 11:29:30 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: var.c,v 1.79 2021/08/08 20:50:12 andvar Exp $	*/
+/*	$NetBSD: var.c,v 1.80 2021/08/09 11:29:30 kre Exp $	*/
 
 /*-
  * Copyright (c) 1991, 1993
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)var.c	8.3 (Berkeley) 5/4/95";
 #else
-__RCSID("$NetBSD: var.c,v 1.79 2021/08/08 20:50:12 andvar Exp $");
+__RCSID("$NetBSD: var.c,v 1.80 2021/08/09 11:29:30 kre Exp $");
 #endif
 #endif /* not lint */
 
@@ -1248,7 +1248,7 @@ unsetvar(const char *s, int unexport)
 
 
 /*
- * Returns true if the two strings specify the same viarable.  The first
+ * Returns true if the two strings specify the same variable.  The first
  * variable name is terminated by '='; the second may be terminated by
  * either '=' or '\0'.
  */

Reply via email to