Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src nix double n, i or g in "ing", in comments and documentation.
details: https://anonhg.NetBSD.org/src/rev/55c875eaa34e
branches: trunk
changeset: 372051:55c875eaa34e
user: andvar <andvar%NetBSD.org@localhost>
date: Wed Oct 26 22:09:37 2022 +0000
description:
nix double n, i or g in "ing", in comments and documentation.
diffstat:
common/lib/libx86emu/x86emu.c | 8 ++++----
lib/libpam/modules/pam_unix/pam_unix.c | 6 +++---
share/man/man4/ciphy.4 | 4 ++--
sys/dev/hpc/hpckbd.c | 6 +++---
4 files changed, 12 insertions(+), 12 deletions(-)
diffs (109 lines):
diff -r 6a218602fed4 -r 55c875eaa34e common/lib/libx86emu/x86emu.c
--- a/common/lib/libx86emu/x86emu.c Wed Oct 26 21:56:19 2022 +0000
+++ b/common/lib/libx86emu/x86emu.c Wed Oct 26 22:09:37 2022 +0000
@@ -1,5 +1,5 @@
-/* $NetBSD: x86emu.c,v 1.12 2021/12/05 04:24:08 msaitoh Exp $ */
+/* $NetBSD: x86emu.c,v 1.13 2022/10/26 22:09:37 andvar Exp $ */
/****************************************************************************
*
@@ -6408,7 +6408,7 @@
CONDITIONAL_SET_FLAG(res & 0x80, F_SF);
CONDITIONAL_SET_FLAG(PARITY(res), F_PF);
/* calculate the borrow chain --- modified such that d=0.
- * substitutiing d=0 into bc= res&(~d|s)|(~d&s); (the one used for
+ * substituting d=0 into bc= res&(~d|s)|(~d&s); (the one used for
* sub) and simplifying, since ~d=0xff..., ~d|s == 0xffff..., and
* res&0xfff... == res. Similarly ~d&s == s. So the simplified
* result is: */
@@ -6434,7 +6434,7 @@
CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF);
/* calculate the borrow chain --- modified such that d=0.
- * substitutiing d=0 into bc= res&(~d|s)|(~d&s); (the one used for
+ * substituting d=0 into bc= res&(~d|s)|(~d&s); (the one used for
* sub) and simplifying, since ~d=0xff..., ~d|s == 0xffff..., and
* res&0xfff... == res. Similarly ~d&s == s. So the simplified
* result is: */
@@ -6460,7 +6460,7 @@
CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF);
/* calculate the borrow chain --- modified such that d=0.
- * substitutiing d=0 into bc= res&(~d|s)|(~d&s); (the one used for
+ * substituting d=0 into bc= res&(~d|s)|(~d&s); (the one used for
* sub) and simplifying, since ~d=0xff..., ~d|s == 0xffff..., and
* res&0xfff... == res. Similarly ~d&s == s. So the simplified
* result is: */
diff -r 6a218602fed4 -r 55c875eaa34e lib/libpam/modules/pam_unix/pam_unix.c
--- a/lib/libpam/modules/pam_unix/pam_unix.c Wed Oct 26 21:56:19 2022 +0000
+++ b/lib/libpam/modules/pam_unix/pam_unix.c Wed Oct 26 22:09:37 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pam_unix.c,v 1.18 2022/04/10 09:50:44 andvar Exp $ */
+/* $NetBSD: pam_unix.c,v 1.19 2022/10/26 22:09:37 andvar Exp $ */
/*-
* Copyright 1998 Juniper Networks, Inc.
@@ -40,7 +40,7 @@
#ifdef __FreeBSD__
__FBSDID("$FreeBSD: src/lib/libpam/modules/pam_unix/pam_unix.c,v 1.49 2004/02/10 10:13:21 des Exp $");
#else
-__RCSID("$NetBSD: pam_unix.c,v 1.18 2022/04/10 09:50:44 andvar Exp $");
+__RCSID("$NetBSD: pam_unix.c,v 1.19 2022/10/26 22:09:37 andvar Exp $");
#endif
@@ -521,7 +521,7 @@
if (pwd->pw_passwd[0] == '\0') {
/*
* No password case.
- * XXX Are we giviing too much away by not prompting
+ * XXX Are we giving too much away by not prompting
* XXX for a password?
* XXX Check PAM_DISALLOW_NULL_AUTHTOK
*/
diff -r 6a218602fed4 -r 55c875eaa34e share/man/man4/ciphy.4
--- a/share/man/man4/ciphy.4 Wed Oct 26 21:56:19 2022 +0000
+++ b/share/man/man4/ciphy.4 Wed Oct 26 22:09:37 2022 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: ciphy.4,v 1.3 2008/04/30 13:10:53 martin Exp $
+.\" $NetBSD: ciphy.4,v 1.4 2022/10/26 22:09:37 andvar Exp $
.\"
.\" Copyright (c) 2005 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -38,7 +38,7 @@
.Sh DESCRIPTION
The
.Nm
-driver supports PHYs commonly integrated on VIA Networkinng Technologies
+driver supports PHYs commonly integrated on VIA Networking Technologies
VT6122 Gigabit Ethernet adapters.
.Sh SEE ALSO
.Xr ifmedia 4 ,
diff -r 6a218602fed4 -r 55c875eaa34e sys/dev/hpc/hpckbd.c
--- a/sys/dev/hpc/hpckbd.c Wed Oct 26 21:56:19 2022 +0000
+++ b/sys/dev/hpc/hpckbd.c Wed Oct 26 22:09:37 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: hpckbd.c,v 1.37 2021/08/07 16:19:11 thorpej Exp $ */
+/* $NetBSD: hpckbd.c,v 1.38 2022/10/26 22:09:37 andvar Exp $ */
/*-
* Copyright (c) 1999-2001 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hpckbd.c,v 1.37 2021/08/07 16:19:11 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hpckbd.c,v 1.38 2022/10/26 22:09:37 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -307,7 +307,7 @@
/*
* fix keydesc table. Since it is const data, we must
- * copy it once before changingg it.
+ * copy it once before changing it.
*/
if (ndesc == NULL) {
Home |
Main Index |
Thread Index |
Old Index