Skip to content

Commit 0e401ca

Browse files
committed
rustfmt
1 parent 6ed1e41 commit 0e401ca

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

crates/rust/src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,10 @@ impl RustWasm {
398398
TypeGeneration::Remap(remapped_path) => {
399399
let name = format!("__with_name{}", self.with_name_counter);
400400
self.with_name_counter += 1;
401-
uwriteln!(self.src, "#[allow(unfulfilled_lint_expectations, unused_imports)]");
401+
uwriteln!(
402+
self.src,
403+
"#[allow(unfulfilled_lint_expectations, unused_imports)]"
404+
);
402405
uwriteln!(self.src, "use {remapped_path} as {name};");
403406
InterfaceName {
404407
remapped: true,

0 commit comments

Comments
 (0)