mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
fix(span): fix clippy warning (#7591)
Fix clippy warning. Only triggers when running clippy in `--release` mode.
This commit is contained in:
parent
3dc46a80c9
commit
b553d6ff9c
1 changed files with 1 additions and 1 deletions
|
|
@ -486,7 +486,7 @@ impl SourceType {
|
|||
#[cfg(debug_assertions)]
|
||||
unreachable!();
|
||||
#[cfg(not(debug_assertions))]
|
||||
return Err(UnknownExtension(format!("Unknown extension: {}", extension).into()));
|
||||
return Err(UnknownExtension(format!("Unknown extension: {extension}").into()));
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue