diff options
author | Pavel Roskin <1317472+proski@users.noreply.github.com> | 2023-10-28 17:53:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-29 00:53:31 +0000 |
commit | 0db2fc7865cff5c7455889093042329b9f5ef68c (patch) | |
tree | 94bf2a4d6915d1ffc8fd0cde1bb84cbd9457c17f /alacritty_terminal | |
parent | 308b331cbcedc11e1e89f6553a7cd9419cda6144 (diff) | |
download | alacritty-0db2fc7865cff5c7455889093042329b9f5ef68c.tar.gz alacritty-0db2fc7865cff5c7455889093042329b9f5ef68c.zip |
Fix clippy warnings
Diffstat (limited to 'alacritty_terminal')
-rw-r--r-- | alacritty_terminal/src/term/mod.rs | 2 |
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(); |