feat: add version info to bottom right of screen #75
check.yml
on: pull_request
check
/
...
/
fmt
10s
check
/
...
/
doc
46s
check
/
...
/
check
50s
Matrix: check / clippy
Annotations
2 warnings
unneeded `return` statement:
src/config.rs#L69
warning: unneeded `return` statement
--> src/config.rs:69:5
|
69 | return true;
| ^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `#[warn(clippy::needless_return)]` on by default
help: remove `return`
|
69 - return true;
69 + true
|
|
unneeded `return` statement:
src/config.rs#L69
warning: unneeded `return` statement
--> src/config.rs:69:5
|
69 | return true;
| ^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `#[warn(clippy::needless_return)]` on by default
help: remove `return`
|
69 - return true;
69 + true
|
|