summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2024-04-10 16:22:42 +0200
committerAram Drevekenin <aram@poor.dev>2024-04-10 16:22:42 +0200
commit237b53375b8132f1b23df49eab371208101a4b86 (patch)
treef21f52b9364f4d2db4ec68e80025099a89a74536
parent3e07ea996dc2834ce5098418bed6ca3db2b3c980 (diff)
style(fmt): rustfmtfix-swap-layout-mixup
-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
}
}