Module Name: src Committed By: andvar Date: Sun Dec 12 11:18:46 UTC 2021
Modified Files: src/bin/sh: miscbltin.c Log Message: s/Miscelaneous/Miscellaneous/ and s/slahes/slashes/ in comments. To generate a diff of this commit: cvs rdiff -u -r1.46 -r1.47 src/bin/sh/miscbltin.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/miscbltin.c diff -u src/bin/sh/miscbltin.c:1.46 src/bin/sh/miscbltin.c:1.47 --- src/bin/sh/miscbltin.c:1.46 Tue Nov 16 11:27:50 2021 +++ src/bin/sh/miscbltin.c Sun Dec 12 11:18:46 2021 @@ -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 202 /* * 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. *