Skip to content

Commit

Permalink
prefix import map diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
nayeemrmn committed Jan 28, 2025
1 parent 0f13c7b commit 1728026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/workspace/resolver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ pub enum WorkspaceResolverDiagnostic<'a> {
impl fmt::Display for WorkspaceResolverDiagnostic<'_> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Self::ImportMap(d) => d.fmt(f),
Self::ImportMap(d) => write!(f, "Import map: {d}"),
Self::CompilerOptionsRootDirs(d) => d.fmt(f),
}
}
Expand Down

0 comments on commit 1728026

Please sign in to comment.