Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/make make(1): fix typo in comments
details: https://anonhg.NetBSD.org/src/rev/9f8d1da91a8c
branches: trunk
changeset: 978220:9f8d1da91a8c
user: rillig <rillig%NetBSD.org@localhost>
date: Sat Nov 14 06:10:28 2020 +0000
description:
make(1): fix typo in comments
This typo may have been influenced by all the '$' in the code.
diffstat:
usr.bin/make/arch.c | 6 +++---
usr.bin/make/dir.c | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diffs (54 lines):
diff -r 5e6443841a93 -r 9f8d1da91a8c usr.bin/make/arch.c
--- a/usr.bin/make/arch.c Sat Nov 14 06:08:24 2020 +0000
+++ b/usr.bin/make/arch.c Sat Nov 14 06:10:28 2020 +0000
@@ -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;
diff -r 5e6443841a93 -r 9f8d1da91a8c usr.bin/make/dir.c
--- a/usr.bin/make/dir.c Sat Nov 14 06:08:24 2020 +0000
+++ b/usr.bin/make/dir.c Sat Nov 14 06:10:28 2020 +0000
@@ -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 @@
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 */
Home |
Main Index |
Thread Index |
Old Index