about summary refs log tree commit diff
path: root/tvix/serde/src/error.rs
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2023-08-19T14·38+0200
committerclbot <clbot@tvl.fyi>2023-08-20T21·43+0000
commit600d4eec775c0b3df3365ea0ffdcfe449527e630 (patch)
tree2cf6c1b4818cf5cf59f020461d4c35976a30b94a /tvix/serde/src/error.rs
parent9cb38c5ba5e51e8843ee2ab210842701c5a6d7ce (diff)
refactor(tvix/serde): cargo clippy r/6497
Change-Id: I3c86225040a04c9cb5702b226b4a5008ae219c42
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9093
Autosubmit: flokli <flokli@flokli.de>
Reviewed-by: raitobezarius <tvl@lahfa.xyz>
Tested-by: BuildkiteCI
Diffstat (limited to '')
-rw-r--r--tvix/serde/src/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/serde/src/error.rs b/tvix/serde/src/error.rs
index f206b830e95f..c1d2258bbfe4 100644
--- a/tvix/serde/src/error.rs
+++ b/tvix/serde/src/error.rs
@@ -64,7 +64,7 @@ impl Display for Error {
                 )?;
 
                 for err in errors {
-                    writeln!(f, "{}", err.fancy_format_str(&source))?;
+                    writeln!(f, "{}", err.fancy_format_str(source))?;
                 }
 
                 Ok(())