style: Removed redundant '&' from paths module function calls

This commit is contained in:
2026-07-13 17:12:58 -06:00
parent bc3cc10a7b
commit 382916c3ee
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -261,7 +261,7 @@ impl Session {
data["messages"] = json!(self.messages);
let output = serde_yaml::to_string(&data)
.with_context(|| format!("Unable to show info about session '{}'", &self.name))?;
.with_context(|| format!("Unable to show info about session '{}'", self.name))?;
Ok(output)
}