mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
Avoid useless format
This commit is contained in:
parent
3033c3ddbf
commit
3aae785693
@ -49,7 +49,7 @@ pub(crate) fn render_tuple_lit(
|
||||
path: &str,
|
||||
) -> RenderedLiteral {
|
||||
if snippet_cap.is_none() {
|
||||
return RenderedLiteral { literal: format!("{path}"), detail: format!("{path}") };
|
||||
return RenderedLiteral { literal: path.to_string(), detail: path.to_string() };
|
||||
}
|
||||
let completions = fields.iter().enumerate().format_with(", ", |(idx, _), f| {
|
||||
if snippet_cap.is_some() {
|
||||
|
Loading…
Reference in New Issue
Block a user