style: Fix typo, NFC

"it it" --> "it is" (across a newline)
This commit is contained in:
rin 2024-01-24 04:00:43 +00:00
parent 3521f8238e
commit 5e0085c398
1 changed files with 3 additions and 3 deletions

View File

@ -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 a4)
* 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.