Module Name: src
Committed By: rin
Date: Wed Jan 24 04:00:43 UTC 2024
Modified Files:
src/share/misc: style
Log Message:
style: Fix typo, NFC
"it it" --> "it is" (across a newline)
To generate a diff of this commit:
cvs rdiff -u -r1.75 -r1.76 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.75 src/share/misc/style:1.76
--- src/share/misc/style:1.75 Mon Aug 7 18:01:42 2023
+++ src/share/misc/style Wed Jan 24 04:00:43 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: style,v 1.75 2023/08/07 18:01:42 riastradh Exp $ */
+/* $NetBSD: style,v 1.76 2024/01/24 04:00:43 rin 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.75 2023/08/07 18:01:42 riastradh Exp $");
+__RCSID("$NetBSD: style,v 1.76 2024/01/24 04:00:43 rin Exp $");
/*
* VERY important single-line comments look like this.
@@ -469,7 +469,7 @@ function(int a1, int a2, float fl, int a
* where we don't have control over the NULL definition (on NetBSD
* it is defined as ((void *)0), but on other systems it can be
* defined as (0) and both definitions are valid), it
- * it advised to cast NULL to a pointer on variadic functions,
+ * is advised to cast NULL to a pointer on variadic functions,
* because on machines where sizeof(pointer) != sizeof(int) and in
* the absence of a prototype in scope, passing an un-casted NULL,
* will result in passing an int on the stack instead of a pointer.