summaryrefslogtreecommitdiff
path: root/sys/dev/wscons
diff options
context:
space:
mode:
authorFrederic Cambus <fcambus@cvs.openbsd.org>2020-09-13 10:05:47 +0000
committerFrederic Cambus <fcambus@cvs.openbsd.org>2020-09-13 10:05:47 +0000
commit30c352772da09ab476be286f8e80f26ebd6bdfdc (patch)
treeca8039b8f089b059040de67d26a0977fe7b9496c /sys/dev/wscons
parent149809936774173e03c9df8fd249658d1c796df3 (diff)
Fix various typos in wscons(4) comments.
Diffstat (limited to 'sys/dev/wscons')
-rw-r--r--sys/dev/wscons/wscons_features.h4
-rw-r--r--sys/dev/wscons/wsdisplayvar.h4
-rw-r--r--sys/dev/wscons/wsemulvar.h4
-rw-r--r--sys/dev/wscons/wstpad.c4
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/wscons/wscons_features.h b/sys/dev/wscons/wscons_features.h
index 58ffaeb2ca7..29ec3a679cd 100644
--- a/sys/dev/wscons/wscons_features.h
+++ b/sys/dev/wscons/wscons_features.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: wscons_features.h,v 1.3 2013/10/18 22:06:40 miod Exp $ */
+/* $OpenBSD: wscons_features.h,v 1.4 2020/09/13 10:05:46 fcambus Exp $ */
/* public domain */
/*
@@ -8,7 +8,7 @@
* HAVE_WSMOUSED_SUPPORT
* defined to enable support for wsmoused(8)
* HAVE_BURNER_SUPPORT
- * defined to enable screen blanking functionnality, controlled by
+ * defined to enable screen blanking functionality, controlled by
* wsconsctl(8)
* HAVE_SCROLLBACK_SUPPORT
* defined to enable xterm-like shift-PgUp scrollback if the underlying
diff --git a/sys/dev/wscons/wsdisplayvar.h b/sys/dev/wscons/wsdisplayvar.h
index a84bbc35ed2..c671013f66a 100644
--- a/sys/dev/wscons/wsdisplayvar.h
+++ b/sys/dev/wscons/wsdisplayvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: wsdisplayvar.h,v 1.37 2020/05/25 09:55:49 jsg Exp $ */
+/* $OpenBSD: wsdisplayvar.h,v 1.38 2020/09/13 10:05:46 fcambus Exp $ */
/* $NetBSD: wsdisplayvar.h,v 1.30 2005/02/04 02:10:49 perry Exp $ */
/*
@@ -162,7 +162,7 @@ struct wsscreen_list {
*/
struct wsemuldisplaydev_attach_args {
int console; /* is it console? */
- int primary; /* is it primry? */
+ int primary; /* is it primary? */
const struct wsscreen_list *scrdata; /* screen cfg info */
const struct wsdisplay_accessops *accessops; /* access ops */
void *accesscookie; /* access cookie */
diff --git a/sys/dev/wscons/wsemulvar.h b/sys/dev/wscons/wsemulvar.h
index 4f2e89be8bc..71dd3071c83 100644
--- a/sys/dev/wscons/wsemulvar.h
+++ b/sys/dev/wscons/wsemulvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: wsemulvar.h,v 1.17 2020/05/25 09:55:49 jsg Exp $ */
+/* $OpenBSD: wsemulvar.h,v 1.18 2020/09/13 10:05:46 fcambus Exp $ */
/* $NetBSD: wsemulvar.h,v 1.6 1999/01/17 15:46:15 drochner Exp $ */
/*
@@ -120,7 +120,7 @@ int wsemul_utf8_translate(u_int32_t, kbd_t, u_char *, int);
*
* When the tty layer will try to retransmit the character, this state
* information is used to not retrig the emulops which have been issued
- * succesfully already.
+ * successfully already.
*
* In order to make things more confusing, there is a particular failure
* case, when all characters have been processed successfully, but
diff --git a/sys/dev/wscons/wstpad.c b/sys/dev/wscons/wstpad.c
index c005ae247d2..f916cbba2e5 100644
--- a/sys/dev/wscons/wstpad.c
+++ b/sys/dev/wscons/wstpad.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wstpad.c,v 1.25 2019/08/31 13:48:45 bru Exp $ */
+/* $OpenBSD: wstpad.c,v 1.26 2020/09/13 10:05:46 fcambus Exp $ */
/*
* Copyright (c) 2015, 2016 Ulf Brosziewski
@@ -1276,7 +1276,7 @@ wstpad_process_input(struct wsmouseinput *input, struct evq_access *evq)
* Try to determine the average interval between two updates. Various
* conditions are checked in order to ensure that only valid samples enter
* into the calculation. Above all, it is restricted to motion events
- * occuring when there is only one contact. MT devices may need more than
+ * occurring when there is only one contact. MT devices may need more than
* one packet to transmit their state if there are multiple touches, and
* the update frequency may be higher in this case.
*/