We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff084ea commit 9634898Copy full SHA for 9634898
1 file changed
crates/wasm-pkg-common/src/package.rs
@@ -87,7 +87,7 @@ pub struct PackageSpec {
87
88
impl PartialEq<str> for PackageSpec {
89
fn eq(&self, other: &str) -> bool {
90
- format!("{self}") == other
+ self.to_string() == other
91
}
92
93
0 commit comments