Skip to content

Commit 3247607

Browse files
authored
Turbopack: fix spacing on EcmascriptModuleAssetType (#84915)
### What? typo
1 parent 1da5efa commit 3247607

File tree

1 file changed

+2
-2
lines changed
  • turbopack/crates/turbopack-ecmascript/src

1 file changed

+2
-2
lines changed

turbopack/crates/turbopack-ecmascript/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,10 +300,10 @@ impl Display for EcmascriptModuleAssetType {
300300
EcmascriptModuleAssetType::Typescript { tsx, analyze_types } => {
301301
write!(f, "typescript")?;
302302
if *tsx {
303-
write!(f, "with JSX")?;
303+
write!(f, " with JSX")?;
304304
}
305305
if *analyze_types {
306-
write!(f, "with types")?;
306+
write!(f, " with types")?;
307307
}
308308
Ok(())
309309
}

0 commit comments

Comments
 (0)