summaryrefslogtreecommitdiffstats
path: root/src/state.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-12-11 02:35:47 -0500
committerJesse Luehrs <doy@tozt.net>2021-12-11 02:35:47 -0500
commitfbd8b4c4b4678c0df902a540ac3c74a5d6ac7040 (patch)
treed551847e2e41062d0ad5495e118214ce6b33152f /src/state.rs
parentd28591405614f4659668c961fc5f015fa91ff1ba (diff)
downloadnbsh-fbd8b4c4b4678c0df902a540ac3c74a5d6ac7040.tar.gz
nbsh-fbd8b4c4b4678c0df902a540ac3c74a5d6ac7040.zip
clippy
Diffstat (limited to 'src/state.rs')
-rw-r--r--src/state.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/state.rs b/src/state.rs
index 9f62194..eee39ae 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -264,7 +264,7 @@ impl State {
&self,
focus: crate::action::Focus,
entry: Option<
- &mut async_std::sync::MutexGuardArc<crate::history::HistoryEntry>,
+ &mut async_std::sync::MutexGuardArc<crate::history::Entry>,
>,
) -> crate::action::Scene {
match focus {
@@ -291,7 +291,7 @@ impl State {
&mut self,
new_focus: crate::action::Focus,
entry: Option<
- &mut async_std::sync::MutexGuardArc<crate::history::HistoryEntry>,
+ &mut async_std::sync::MutexGuardArc<crate::history::Entry>,
>,
) {
self.focus = new_focus;