Skip to content

Commit a801cd5

Browse files
committed
fix
1 parent fbc109a commit a801cd5

File tree

1 file changed

+1
-1
lines changed
  • crates/compilers/src/resolver

1 file changed

+1
-1
lines changed

crates/compilers/src/resolver/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ impl<L: Language, D: ParsedSource<Language = L>> Graph<D> {
634634

635635
let mut msg = String::new();
636636
self.format_imports_list(idx, nodes[1..].to_vec(), &mut msg).unwrap();
637-
Err(format!("Found incompatible versions:\n{msg}"));
637+
Err(format!("Found incompatible versions:\n{msg}"))
638638
}
639639

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

0 commit comments

Comments
 (0)