style: remove comma before paren

This commit is contained in:
daimond113 2024-10-15 23:52:52 +02:00
parent 87a45c0429
commit 051e062c39
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C
3 changed files with 3 additions and 3 deletions

View file

@ -455,7 +455,7 @@ pub async fn publish_package(
let (a, b, c) = join!(
app_state
.storage
.store_package(&manifest.name, &version_id, bytes.to_vec(),),
.store_package(&manifest.name, &version_id, bytes.to_vec()),
join_all(
docs_pages
.into_iter()

View file

@ -91,7 +91,7 @@ pub fn check_for_updates(reqwest: &reqwest::blocking::Client) -> anyhow::Result<
.bold();
let column = "|".bright_magenta().bold();
println!("\n{stars}\n{column} {message} {column}\n{stars}\n",);
println!("\n{stars}\n{column} {message} {column}\n{stars}\n");
}
Ok(())

View file

@ -88,7 +88,7 @@ pub(crate) fn insert_node(
match (&current_node.direct, &node.direct) {
(Some(_), Some(_)) => {
log::warn!("duplicate direct dependency for {name}@{version}",);
log::warn!("duplicate direct dependency for {name}@{version}");
}
(None, Some(_)) => {