aboutsummaryrefslogtreecommitdiff
path: root/alacritty_terminal
diff options
context:
space:
mode:
authorPavel Roskin <1317472+proski@users.noreply.github.com>2023-10-28 17:53:31 -0700
committerGitHub <noreply@github.com>2023-10-29 00:53:31 +0000
commit0db2fc7865cff5c7455889093042329b9f5ef68c (patch)
tree94bf2a4d6915d1ffc8fd0cde1bb84cbd9457c17f /alacritty_terminal
parent308b331cbcedc11e1e89f6553a7cd9419cda6144 (diff)
downloadalacritty-0db2fc7865cff5c7455889093042329b9f5ef68c.tar.gz
alacritty-0db2fc7865cff5c7455889093042329b9f5ef68c.zip
Fix clippy warnings
Diffstat (limited to 'alacritty_terminal')
-rw-r--r--alacritty_terminal/src/term/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty_terminal/src/term/mod.rs b/alacritty_terminal/src/term/mod.rs
index 46a94f17..b2f4ea61 100644
--- a/alacritty_terminal/src/term/mod.rs
+++ b/alacritty_terminal/src/term/mod.rs
@@ -2982,7 +2982,7 @@ mod tests {
term.push_title();
term.set_title(Some("Next".into()));
assert_eq!(term.title, Some("Next".into()));
- assert_eq!(term.title_stack.get(0).unwrap(), &Some("Test".into()));
+ assert_eq!(term.title_stack.first().unwrap(), &Some("Test".into()));
// Title can be popped from stack and set as the window title.
term.pop_title();