aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-03-09 01:35:37 -0500
committerJesse Luehrs <doy@tozt.net>2023-03-09 01:35:37 -0500
commite11519d403f5ac0cdff70f1029791c0aa9dbe8d5 (patch)
tree08d1601609a06d3947227ad41a7decf8b7855632
parent3f927cb968653dd2efcfb1d858c19e5a7927d48c (diff)
downloadvt100-rust-e11519d403f5ac0cdff70f1029791c0aa9dbe8d5.tar.gz
vt100-rust-e11519d403f5ac0cdff70f1029791c0aa9dbe8d5.zip
typo
-rw-r--r--src/callbacks.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callbacks.rs b/src/callbacks.rs
index 70331eb..6262906 100644
--- a/src/callbacks.rs
+++ b/src/callbacks.rs
@@ -11,6 +11,6 @@ pub trait Callbacks {
/// (typically with `\e[8;<rows>;<cols>t`).
fn resize(&mut self, _: &mut crate::Screen, _request: (u16, u16)) {}
/// This callback is called when the terminal receives invalid input
- /// (such as an invalid UTF-8 character or an used control character).
+ /// (such as an invalid UTF-8 character or an unused control character).
fn error(&mut self, _: &mut crate::Screen) {}
}