diff --git a/src/terminal/terminal.c b/src/terminal/terminal.c index 77141aa7..9369db1f 100644 --- a/src/terminal/terminal.c +++ b/src/terminal/terminal.c @@ -1304,7 +1304,7 @@ static void __guac_terminal_resize(guac_terminal* term, int width, int height) { guac_terminal_display_flush(term->display); guac_terminal_display_resize(term->display, width, height); - /* Reraw any characters on right if widening */ + /* Redraw any characters on right if widening */ if (width > term->term_width) __guac_terminal_redraw_rect(term, 0, term->term_width-1, height-1, width-1); diff --git a/src/terminal/terminal/typescript.h b/src/terminal/terminal/typescript.h index 5edf178f..941dd99f 100644 --- a/src/terminal/terminal/typescript.h +++ b/src/terminal/terminal/typescript.h @@ -120,7 +120,7 @@ typedef struct guac_terminal_typescript { /** * The last time that this typescript was flushed. If this typescript was - * never flushed, this will be the time the typescripe was created. + * never flushed, this will be the time the typescript was created. */ guac_timestamp last_flush;