diff options
author | Pavel Roskin <1317472+proski@users.noreply.github.com> | 2023-10-25 16:20:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-25 23:20:58 +0000 |
commit | 75eef3be9680dbe3300186b06e19eac7f9dfab4b (patch) | |
tree | e59127474f8bdaae5be26dc53d25c3c9ed86d379 /alacritty_terminal/src/event.rs | |
parent | 500b696ca8ed61c42f5954b10f1294e875d792ae (diff) | |
download | alacritty-75eef3be9680dbe3300186b06e19eac7f9dfab4b.tar.gz alacritty-75eef3be9680dbe3300186b06e19eac7f9dfab4b.zip |
Fix typos
Diffstat (limited to 'alacritty_terminal/src/event.rs')
-rw-r--r-- | alacritty_terminal/src/event.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty_terminal/src/event.rs b/alacritty_terminal/src/event.rs index 4e1d9ec4..5849eb1e 100644 --- a/alacritty_terminal/src/event.rs +++ b/alacritty_terminal/src/event.rs @@ -25,13 +25,13 @@ pub enum Event { /// Request to write the contents of the clipboard to the PTY. /// - /// The attached function is a formatter which will corectly transform the clipboard content + /// The attached function is a formatter which will correctly transform the clipboard content /// into the expected escape sequence format. ClipboardLoad(ClipboardType, Arc<dyn Fn(&str) -> String + Sync + Send + 'static>), /// Request to write the RGB value of a color to the PTY. /// - /// The attached function is a formatter which will corectly transform the RGB color into the + /// The attached function is a formatter which will correctly transform the RGB color into the /// expected escape sequence format. ColorRequest(usize, Arc<dyn Fn(Rgb) -> String + Sync + Send + 'static>), |