From bad6b13a151bb1f09831f0cef1f9d2204e15efaf Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Sat, 21 Sep 2024 16:26:49 +0200 Subject: [PATCH] rustfmt --- crates/artifacts/solc/src/remappings.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/artifacts/solc/src/remappings.rs b/crates/artifacts/solc/src/remappings.rs index a8b223c..8b107a0 100644 --- a/crates/artifacts/solc/src/remappings.rs +++ b/crates/artifacts/solc/src/remappings.rs @@ -771,8 +771,8 @@ fn dir_distance(root: &Path, current: &Path) -> usize { } /// This finds the next window between `root` and `current` -/// If `root` ends with a `lib` component then start joining components from `current` until no valid -/// window opener is found +/// If `root` ends with a `lib` component then start joining components from `current` until no +/// valid window opener is found fn next_nested_window(root: &Path, current: &Path) -> PathBuf { if !is_lib_dir(root) || root == current { return root.to_path_buf();