Add FreeDesktop MetaInfo file #432
reviewdog [clippy] report
reported by reviewdog 🐶
Findings (0)
Filtered Findings (3)
src/windows/room/mod.rs|404 col 39| warning: useless use of format!
--> src/windows/room/mod.rs:404:39
|
404 | ... let msg = format!("This room has no canonical alias to unset");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string()
: "This room has no canonical alias to unset".to_string()
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
= note: #[warn(clippy::useless_format)]
on by default
src/windows/room/mod.rs|504 col 25| warning: useless use of format!
--> src/windows/room/mod.rs:504:25
|
504 | format!("Cannot currently show value for a tag")
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string()
: "Cannot currently show value for a tag".to_string()
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
src/windows/room/mod.rs|507 col 25| warning: useless use of format!
--> src/windows/room/mod.rs:507:25
|
507 | format!("Cannot show a single alias; use :room aliases show
instead.")
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string()
: "Cannot show a single alias; use
:room aliases show instead.".to_string()
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format