Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/base_db/src/input.rs')
| -rw-r--r-- | crates/base_db/src/input.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/base_db/src/input.rs b/crates/base_db/src/input.rs index c3730d0bbd..565d0c02cf 100644 --- a/crates/base_db/src/input.rs +++ b/crates/base_db/src/input.rs @@ -521,8 +521,8 @@ impl fmt::Display for CyclicDependenciesError { write!( f, "cyclic deps: {} -> {}, alternative path: {}", - render(&self.from()), - render(&self.to()), + render(self.from()), + render(self.to()), path ) } |