diff options
author | Ian Moffett <ian@osmora.org> | 2024-02-25 22:33:19 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-02-25 22:33:19 -0500 |
commit | 042899885e610554e28cb673a1b0b10cc8b93ea7 (patch) | |
tree | 349c137606e942bd043f2d31fd808f2f22761511 | |
parent | d4372855f00cb47ccfa60db79c5ee35c17f96707 (diff) |
kernel: vcons: Fix mistake in comment
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sys/dev/vcons/vcons.c | 2 |
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)) { |