rust/crates/ide-completion/src
Yuri Astrakhan e16c76e3c3 Inline all format arguments where possible
This makes code more readale and concise,
moving all format arguments like `format!("{}", foo)`
into the more compact `format!("{foo}")` form.

The change was automatically created with, so there are far less change
of an accidental typo.

```
cargo clippy --fix -- -A clippy::all -W clippy::uninlined_format_args
```
2022-12-24 14:36:10 -05:00
..
completions Inline all format arguments where possible 2022-12-24 14:36:10 -05:00
context Inline all format arguments where possible 2022-12-24 14:36:10 -05:00
render Inline all format arguments where possible 2022-12-24 14:36:10 -05:00
tests Inline all format arguments where possible 2022-12-24 14:36:10 -05:00
completions.rs Inline all format arguments where possible 2022-12-24 14:36:10 -05:00
config.rs Restructure find_path into a separate functions for modules and non-module items 2022-09-13 15:15:27 +02:00
context.rs fix: also exclude 2 coloncolon in a row 2022-11-27 02:39:38 +09:00
item.rs Inline all format arguments where possible 2022-12-24 14:36:10 -05:00
lib.rs fix: filter unnecessary completions after colon 2022-11-12 22:33:40 +09:00
render.rs Inline all format arguments where possible 2022-12-24 14:36:10 -05:00
snippet.rs Inline all format arguments where possible 2022-12-24 14:36:10 -05:00
tests.rs Inline all format arguments where possible 2022-12-24 14:36:10 -05:00