Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src s/beggining/beginning/ in comments.



details:   https://anonhg.NetBSD.org/src/rev/3a9dc159a7df
branches:  trunk
changeset: 366368:3a9dc159a7df
user:      andvar <andvar%NetBSD.org@localhost>
date:      Mon May 23 19:21:30 2022 +0000

description:
s/beggining/beginning/ in comments.

diffstat:

 lib/libc/stdlib/strfmon.c        |  6 +++---
 sys/arch/bebox/stand/boot/siop.c |  4 ++--
 sys/dev/ic/esiop.c               |  6 +++---
 sys/dev/ic/siop_common.c         |  6 +++---
 sys/dev/microcode/siop/esiop.ss  |  4 ++--
 5 files changed, 13 insertions(+), 13 deletions(-)

diffs (117 lines):

diff -r d9dfd00d6a1b -r 3a9dc159a7df lib/libc/stdlib/strfmon.c
--- a/lib/libc/stdlib/strfmon.c Mon May 23 16:58:37 2022 +0000
+++ b/lib/libc/stdlib/strfmon.c Mon May 23 19:21:30 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: strfmon.c,v 1.15 2022/04/19 20:32:16 rillig Exp $      */
+/*     $NetBSD: strfmon.c,v 1.16 2022/05/23 19:21:30 andvar Exp $      */
 
 /*-
  * Copyright (c) 2001 Alexey Zelkin <phantom%FreeBSD.org@localhost>
@@ -32,7 +32,7 @@
 #if 0
 __FBSDID("$FreeBSD: src/lib/libc/stdlib/strfmon.c,v 1.14 2003/03/20 08:18:55 ache Exp $");
 #else
-__RCSID("$NetBSD: strfmon.c,v 1.15 2022/04/19 20:32:16 rillig Exp $");
+__RCSID("$NetBSD: strfmon.c,v 1.16 2022/05/23 19:21:30 andvar Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -563,7 +563,7 @@
        }
        bufend = rslt + bufsize - 1;    /* reserve space for trailing '\0' */
 
-       /* skip spaces at beggining */
+       /* skip spaces at beginning */
        padded = 0;
        while (avalue[padded] == ' ') {
                padded++;
diff -r d9dfd00d6a1b -r 3a9dc159a7df sys/arch/bebox/stand/boot/siop.c
--- a/sys/arch/bebox/stand/boot/siop.c  Mon May 23 16:58:37 2022 +0000
+++ b/sys/arch/bebox/stand/boot/siop.c  Mon May 23 19:21:30 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: siop.c,v 1.9 2022/05/22 11:27:34 andvar Exp $  */
+/*     $NetBSD: siop.c,v 1.10 2022/05/23 19:21:30 andvar Exp $ */
 /*
  * Copyright (c) 2010 KIYOHARA Takashi
  * All rights reserved.
@@ -213,7 +213,7 @@
 
        /*
         * now we can remove entries which have been transferred.
-        * We just move the entries with data left at the beggining of the
+        * We just move the entries with data left at the beginning of the
         * tables
         */
        memmove(xfer->siop_tables.data, &xfer->siop_tables.data[offset],
diff -r d9dfd00d6a1b -r 3a9dc159a7df sys/dev/ic/esiop.c
--- a/sys/dev/ic/esiop.c        Mon May 23 16:58:37 2022 +0000
+++ b/sys/dev/ic/esiop.c        Mon May 23 19:21:30 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: esiop.c,v 1.60 2022/02/23 21:54:41 andvar Exp $        */
+/*     $NetBSD: esiop.c,v 1.61 2022/05/23 19:21:30 andvar Exp $        */
 
 /*
  * Copyright (c) 2002 Manuel Bouyer.
@@ -28,7 +28,7 @@
 /* SYM53c7/8xx PCI-SCSI I/O Processors driver */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: esiop.c,v 1.60 2022/02/23 21:54:41 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: esiop.c,v 1.61 2022/05/23 19:21:30 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -209,7 +209,7 @@
        siop_common_reset(&sc->sc_c);
 
        /*
-        * we copy the script at the beggining of RAM. Then there is 4 bytes
+        * we copy the script at the beginning of RAM. Then there is 4 bytes
         * for messages in, and 4 bytes for semaphore
         */
        sc->sc_free_offset = __arraycount(esiop_script);
diff -r d9dfd00d6a1b -r 3a9dc159a7df sys/dev/ic/siop_common.c
--- a/sys/dev/ic/siop_common.c  Mon May 23 16:58:37 2022 +0000
+++ b/sys/dev/ic/siop_common.c  Mon May 23 19:21:30 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: siop_common.c,v 1.56 2022/05/22 11:27:35 andvar Exp $  */
+/*     $NetBSD: siop_common.c,v 1.57 2022/05/23 19:21:30 andvar Exp $  */
 
 /*
  * Copyright (c) 2000, 2002 Manuel Bouyer.
@@ -28,7 +28,7 @@
 /* SYM53c7/8xx PCI-SCSI I/O Processors driver */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: siop_common.c,v 1.56 2022/05/22 11:27:35 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: siop_common.c,v 1.57 2022/05/23 19:21:30 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -841,7 +841,7 @@
 
        /*
         * now we can remove entries which have been transferred.
-        * We just move the entries with data left at the beggining of the
+        * We just move the entries with data left at the beginning of the
         * tables
         */
        memmove(&siop_cmd->siop_tables->data[0],
diff -r d9dfd00d6a1b -r 3a9dc159a7df sys/dev/microcode/siop/esiop.ss
--- a/sys/dev/microcode/siop/esiop.ss   Mon May 23 16:58:37 2022 +0000
+++ b/sys/dev/microcode/siop/esiop.ss   Mon May 23 19:21:30 2022 +0000
@@ -1,4 +1,4 @@
-;      $NetBSD: esiop.ss,v 1.21 2009/10/19 18:41:13 bouyer Exp $
+;      $NetBSD: esiop.ss,v 1.22 2022/05/23 19:21:30 andvar Exp $
 
 ;
 ; Copyright (c) 2002 Manuel Bouyer.
@@ -288,7 +288,7 @@
        MOVE SCRATCHD3 + 0 to SCRATCHD3 WITH CARRY;
        MOVE SCRATCHE0 TO SFBR;
        JUMP REL(handle_cmd), IF  NOT ncmd_slots_last;
-; reset pointers to beggining of area
+; reset pointers to beginning of area
 cmdr0:
        MOVE 0xff to SCRATCHD0; correct value will be patched by driver
 cmdr1:



Home | Main Index | Thread Index | Old Index