From e4abc357594cfaf6271a791c725314ee5f6467c8 Mon Sep 17 00:00:00 2001 From: andvar Date: Thu, 21 Oct 2021 13:21:53 +0000 Subject: fix various typos, mainly in comments, but also in man pages and log messages. --- sys/modules/examples/panic_string/panic_string.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/modules/examples/panic_string/panic_string.c') diff --git a/sys/modules/examples/panic_string/panic_string.c b/sys/modules/examples/panic_string/panic_string.c index 44b9c2eecae..20b3766274b 100644 --- a/sys/modules/examples/panic_string/panic_string.c +++ b/sys/modules/examples/panic_string/panic_string.c @@ -1,4 +1,4 @@ -/* $NetBSD: panic_string.c,v 1.2 2020/01/30 07:58:33 kamil Exp $ */ +/* $NetBSD: panic_string.c,v 1.3 2021/10/21 13:21:55 andvar Exp $ */ /*- * Copyright (c) 2018 The NetBSD Foundation, Inc. @@ -28,7 +28,7 @@ #include -__KERNEL_RCSID(0, "$NetBSD: panic_string.c,v 1.2 2020/01/30 07:58:33 kamil Exp $"); +__KERNEL_RCSID(0, "$NetBSD: panic_string.c,v 1.3 2021/10/21 13:21:55 andvar Exp $"); #include #include @@ -53,7 +53,7 @@ __KERNEL_RCSID(0, "$NetBSD: panic_string.c,v 1.2 2020/01/30 07:58:33 kamil Exp $ * * Commentary: * This module manages the device /dev/panic, - * tranfers a string from userspace to kernel space + * transfers a string from userspace to kernel space * and calls kernel panic with the passed string. * * echo 'string' > /dev/panic -- cgit