Module Name: src
Committed By: jkoshy
Date: Thu Dec 29 18:23:37 UTC 2022
Modified Files:
src/share/misc: style
Log Message:
Terminate a sentence with a full stop.
To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 src/share/misc/style
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/misc/style
diff -u src/share/misc/style:1.64 src/share/misc/style:1.65
--- src/share/misc/style:1.64 Thu Mar 10 23:39:12 2022
+++ src/share/misc/style Thu Dec 29 18:23:37 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: style,v 1.64 2022/03/10 23:39:12 rillig Exp $ */
+/* $NetBSD: style,v 1.65 2022/12/29 18:23:37 jkoshy Exp $ */
/*
* The revision control tag appears first, with a blank line after it.
@@ -30,7 +30,7 @@
#include <sys/cdefs.h>
__COPYRIGHT("@(#) Copyright (c) 2008\
The NetBSD Foundation, inc. All rights reserved.");
-__RCSID("$NetBSD: style,v 1.64 2022/03/10 23:39:12 rillig Exp $");
+__RCSID("$NetBSD: style,v 1.65 2022/12/29 18:23:37 jkoshy Exp $");
/*
* VERY important single-line comments look like this.
@@ -432,7 +432,7 @@ dirinfo(const char *p, struct stat *sb,
/*
* To printf quantities that might be larger than "long",
- * cast quantities to intmax_t or uintmax_t and use %j
+ * cast quantities to intmax_t or uintmax_t and use %j.
*/
(void)printf("The size of %s is %jd (%#ju)\n", p,
(intmax_t)sb->st_size, (uintmax_t)sb->st_size);