Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
klkvr committed Sep 17, 2024
1 parent af66255 commit 814a4d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/compilers/src/resolver/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ impl<L: Language, D: ParsedSource<Language = L>> Graph<D> {

let mut msg = "Found incompatible versions:\n".white().to_string();
self.format_imports_list(idx, nodes.into_iter().collect(), &mut msg).unwrap();
Err(format!("Found incompatible versions:\n{msg}"))
Err(msg)
}

fn input_nodes_by_language(&self) -> HashMap<D::Language, Vec<usize>> {
Expand Down

0 comments on commit 814a4d9

Please sign in to comment.