mirror of
https://github.com/nushell/nushell.git
synced 2025-06-03 08:36:32 +02:00
remove the useless .to_string
conversion from format!
s
This commit also makes `clippy` happy.
This commit is contained in:
parent
8465c743dc
commit
5fe0fc9135
@ -197,7 +197,7 @@ pub fn value_to_string(
|
||||
}
|
||||
})
|
||||
.collect();
|
||||
let headers_output = headers.join(&format!(", {nl}{idt_pt}").to_string());
|
||||
let headers_output = headers.join(&format!(", {nl}{idt_pt}"));
|
||||
|
||||
let mut table_output = vec![];
|
||||
for val in vals {
|
||||
@ -214,13 +214,13 @@ pub fn value_to_string(
|
||||
}
|
||||
}
|
||||
|
||||
table_output.push(row.join(&format!(", {nl}{idt_pt}").to_string()));
|
||||
table_output.push(row.join(&format!(", {nl}{idt_pt}")));
|
||||
}
|
||||
|
||||
Ok(format!(
|
||||
"[{nl}{idt_po}[{nl}{idt_pt}{}{nl}{idt_po}]; {nl}{idt_po}[{nl}{idt_pt}{}{nl}{idt_po}]{nl}{idt}]",
|
||||
headers_output,
|
||||
table_output.join(&format!("{nl}{idt_po}], {nl}{idt_po}[{nl}{idt_pt}").to_string())
|
||||
table_output.join(&format!("{nl}{idt_po}], {nl}{idt_po}[{nl}{idt_pt}"))
|
||||
))
|
||||
} else {
|
||||
let mut collection = vec![];
|
||||
@ -232,7 +232,7 @@ pub fn value_to_string(
|
||||
}
|
||||
Ok(format!(
|
||||
"[{nl}{}{nl}{idt}]",
|
||||
collection.join(&format!(", {nl}").to_string())
|
||||
collection.join(&format!(", {nl}"))
|
||||
))
|
||||
}
|
||||
}
|
||||
@ -266,7 +266,7 @@ pub fn value_to_string(
|
||||
}
|
||||
Ok(format!(
|
||||
"{{{nl}{}{nl}{idt}}}",
|
||||
collection.join(&format!(", {nl}").to_string())
|
||||
collection.join(&format!(", {nl}"))
|
||||
))
|
||||
}
|
||||
Value::LazyRecord { val, .. } => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user