GUACAMOLE-1911: Fixed some typo mistakes ("Reraw", "typescripe").

This commit is contained in:
Jimmy 2024-01-22 07:00:20 -08:00
parent bd10897e64
commit aca25d2a1b
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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;