mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-19 08:08:39 +01:00
style: simplify string formatting for readability (#231763)
* style: simplify string formatting for readability * fix: formatting in `.rs` files in `src/`
This commit is contained in:
@@ -153,7 +153,7 @@ fn print_and_exit<E>(err: E) -> !
|
||||
where
|
||||
E: std::fmt::Display,
|
||||
{
|
||||
log::emit(log::Level::Error, "", &format!("{}", err));
|
||||
log::emit(log::Level::Error, "", &format!("{err}"));
|
||||
std::process::exit(1);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user