Skip to content

Commit ff0d1ff

Browse files
committed
fix: cargo fmt
1 parent 1024004 commit ff0d1ff

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

crates/wit-parser/src/resolve/error.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,10 @@ impl fmt::Display for ResolveErrorKind {
104104
} => write!(f, "world '{requested}' not found in package '{package}'"),
105105
ResolveErrorKind::InterfaceNotFound {
106106
requested, package, ..
107-
} => write!(f, "interface '{requested}' not found in package '{package}'"),
107+
} => write!(
108+
f,
109+
"interface '{requested}' not found in package '{package}'"
110+
),
108111
ResolveErrorKind::InvalidTransitiveDependency { name, .. } => write!(
109112
f,
110113
"interface `{name}` transitively depends on an interface in incompatible ways",

0 commit comments

Comments
 (0)