From 042899885e610554e28cb673a1b0b10cc8b93ea7 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 25 Feb 2024 22:33:19 -0500 Subject: kernel: vcons: Fix mistake in comment Signed-off-by: Ian Moffett --- sys/dev/vcons/vcons.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) { -- cgit v1.2.3