aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Hill <aa1ronham@gmail.com>2017-05-20 16:58:33 -0400
committerJoe Wilm <jwilm@users.noreply.github.com>2017-05-24 10:56:50 -0700
commitbc8d86f97056478b411a7fea56fd47bc1f8fc58d (patch)
tree2cc7740046b9d59e9f43a88eb5731d56f93e39fb
parent876dc151527cac0db1c319af0f0c95158bdf1806 (diff)
downloadalacritty-bc8d86f97056478b411a7fea56fd47bc1f8fc58d.tar.gz
alacritty-bc8d86f97056478b411a7fea56fd47bc1f8fc58d.zip
Fix typo
-rw-r--r--src/event_loop.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event_loop.rs b/src/event_loop.rs
index 59fa4fbf..a1fed336 100644
--- a/src/event_loop.rs
+++ b/src/event_loop.rs
@@ -22,7 +22,7 @@ pub enum Msg {
/// Data that should be written to the pty
Input(Cow<'static, [u8]>),
- /// Indicates that the `EvemtLoop` should shut down, as Alacritty is shutting down
+ /// Indicates that the `EventLoop` should shut down, as Alacritty is shutting down
Shutdown
}