mirror of
https://github.com/sharkdp/bat.git
synced 2025-10-03 02:22:35 +01:00
Inline format!
args wherever possible
This commit is contained in:
@@ -80,7 +80,7 @@ fn handle_license(path: &Path) -> Result<Option<String>> {
|
||||
} else if license_not_needed_in_acknowledgements(&license_text) {
|
||||
Ok(None)
|
||||
} else {
|
||||
Err(format!("ERROR: License is of unknown type: {:?}", path).into())
|
||||
Err(format!("ERROR: License is of unknown type: {path:?}").into())
|
||||
}
|
||||
}
|
||||
|
||||
@@ -125,7 +125,7 @@ fn append_to_acknowledgements(
|
||||
relative_path: &str,
|
||||
license_text: &str,
|
||||
) {
|
||||
write!(acknowledgements, "## {}\n\n{}", relative_path, license_text).ok();
|
||||
write!(acknowledgements, "## {relative_path}\n\n{license_text}").ok();
|
||||
|
||||
// Make sure the last char is a newline to not mess up formatting later
|
||||
if acknowledgements
|
||||
|
Reference in New Issue
Block a user