aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/vcons/vcons.c
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-02-25 22:33:19 -0500
committerIan Moffett <ian@osmora.org>2024-02-25 22:33:19 -0500
commit042899885e610554e28cb673a1b0b10cc8b93ea7 (patch)
tree349c137606e942bd043f2d31fd808f2f22761511 /sys/dev/vcons/vcons.c
parentd4372855f00cb47ccfa60db79c5ee35c17f96707 (diff)
kernel: vcons: Fix mistake in comment
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/dev/vcons/vcons.c')
-rw-r--r--sys/dev/vcons/vcons.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/vcons/vcons.c b/sys/dev/vcons/vcons.c
index 622c7ae..4858110 100644
--- a/sys/dev/vcons/vcons.c
+++ b/sys/dev/vcons/vcons.c
@@ -99,7 +99,7 @@ vcons_putch(struct vcons_screen *scr, char c)
* Check text bounds
*
* We must subtract ncols,nrows by FONT_WIDTH,FONT_HEIGHT
- * as each char is of that width and we need to account for
+ * as each char is of that width,height and we need to account for
* that.
*/
if (x >= (scr->ncols - FONT_WIDTH)) {