summaryrefslogtreecommitdiffstats
path: root/zellij-utils/src/input/layout.rs
diff options
context:
space:
mode:
Diffstat (limited to 'zellij-utils/src/input/layout.rs')
-rw-r--r--zellij-utils/src/input/layout.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/zellij-utils/src/input/layout.rs b/zellij-utils/src/input/layout.rs
index 4364ae2f3..f51ddd92c 100644
--- a/zellij-utils/src/input/layout.rs
+++ b/zellij-utils/src/input/layout.rs
@@ -435,8 +435,7 @@ pub struct PluginAlias {
impl PartialEq for PluginAlias {
fn eq(&self, other: &Self) -> bool {
- self.name == other.name
- && self.configuration == other.configuration
+ self.name == other.name && self.configuration == other.configuration
}
}