diff --git a/selection.c b/selection.c index ad88f93a..8860ef88 100644 --- a/selection.c +++ b/selection.c @@ -61,7 +61,7 @@ selection_update(struct terminal *term, int col, int row) } void -selection_finalizie(struct terminal *term) +selection_finalize(struct terminal *term) { if (!selection_enabled(term)) return; diff --git a/selection.h b/selection.h index 96b8b489..84aed3f0 100644 --- a/selection.h +++ b/selection.h @@ -4,5 +4,5 @@ void selection_start(struct terminal *term, int col, int row); void selection_update(struct terminal *term, int col, int row); -void selection_finalizie(struct terminal *term); +void selection_finalize(struct terminal *term); void selection_cancel(struct terminal *term);