Module Name:    src
Committed By:   rillig
Date:           Sat Nov 14 06:10:28 UTC 2020

Modified Files:
        src/usr.bin/make: arch.c dir.c

Log Message:
make(1): fix typo in comments

This typo may have been influenced by all the '$' in the code.


To generate a diff of this commit:
cvs rdiff -u -r1.175 -r1.176 src/usr.bin/make/arch.c
cvs rdiff -u -r1.203 -r1.204 src/usr.bin/make/dir.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/make/arch.c
diff -u src/usr.bin/make/arch.c:1.175 src/usr.bin/make/arch.c:1.176
--- src/usr.bin/make/arch.c:1.175	Sun Nov  8 19:53:11 2020
+++ src/usr.bin/make/arch.c	Sat Nov 14 06:10:28 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: arch.c,v 1.175 2020/11/08 19:53:11 rillig Exp $	*/
+/*	$NetBSD: arch.c,v 1.176 2020/11/14 06:10:28 rillig Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -71,7 +71,7 @@
 /* Manipulate libraries, archives and their members.
  *
  * The first time an archive is referenced, all of its members' headers are
- * read and cashed and the archive closed again.  All cashed archives are kept
+ * read and cached and the archive closed again.  All cached archives are kept
  * on a list which is searched each time an archive member is referenced.
  *
  * The interface to this module is:
@@ -125,7 +125,7 @@
 #include "config.h"
 
 /*	"@(#)arch.c	8.2 (Berkeley) 1/2/94"	*/
-MAKE_RCSID("$NetBSD: arch.c,v 1.175 2020/11/08 19:53:11 rillig Exp $");
+MAKE_RCSID("$NetBSD: arch.c,v 1.176 2020/11/14 06:10:28 rillig Exp $");
 
 typedef struct List ArchList;
 typedef struct ListNode ArchListNode;

Index: src/usr.bin/make/dir.c
diff -u src/usr.bin/make/dir.c:1.203 src/usr.bin/make/dir.c:1.204
--- src/usr.bin/make/dir.c:1.203	Sat Nov 14 06:08:24 2020
+++ src/usr.bin/make/dir.c	Sat Nov 14 06:10:28 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: dir.c,v 1.203 2020/11/14 06:08:24 rillig Exp $	*/
+/*	$NetBSD: dir.c,v 1.204 2020/11/14 06:10:28 rillig Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -134,7 +134,7 @@
 #include "job.h"
 
 /*	"@(#)dir.c	8.2 (Berkeley) 1/2/94"	*/
-MAKE_RCSID("$NetBSD: dir.c,v 1.203 2020/11/14 06:08:24 rillig Exp $");
+MAKE_RCSID("$NetBSD: dir.c,v 1.204 2020/11/14 06:10:28 rillig Exp $");
 
 #define DIR_DEBUG0(text) DEBUG0(DIR, text)
 #define DIR_DEBUG1(fmt, arg1) DEBUG1(DIR, fmt, arg1)
@@ -276,7 +276,7 @@ OpenDirs_Remove(OpenDirs *odirs, const c
 static OpenDirs openDirs;	/* the list of all open directories */
 
 /*
- * Variables for gathering statistics on the efficiency of the cashing
+ * Variables for gathering statistics on the efficiency of the caching
  * mechanism.
  */
 static int hits;		/* Found in directory cache */

Reply via email to