From a74be23c6ed766dcb1bfeeea2f18c0d176e487c0 Mon Sep 17 00:00:00 2001 From: Gordon Bergling Date: Wed, 11 Jan 2023 12:12:48 +0100 Subject: [PATCH] tty(4): Fix a typo in a source code comment - s/charaters/characters/ MFC after: 3 days --- sys/sys/tty.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/tty.h b/sys/sys/tty.h index 4ee76b343c3a..f25dc3ca5e8b 100644 --- a/sys/sys/tty.h +++ b/sys/sys/tty.h @@ -144,7 +144,7 @@ struct xtty { size_t xt_size; /* Structure size. */ size_t xt_insize; /* Input queue size. */ size_t xt_incc; /* Canonicalized characters. */ - size_t xt_inlc; /* Input line charaters. */ + size_t xt_inlc; /* Input line characters. */ size_t xt_inlow; /* Input low watermark. */ size_t xt_outsize; /* Output queue size. */ size_t xt_outcc; /* Output queue usage. */