Task #66565 - fixed.err
back to task #66565download
Error: CLIPPY_WARNING:
crates/lib/src/parsers/grub_menuconfig.rs:105:22: warning: redundant guard
# |
# 105 | c if c == '\\' => {
# | ^^^^^^^^^
# |
# = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards
# = note: `#[warn(clippy::redundant_guards)]` on by default
# help: try
# |
# 105 - c if c == '\\' => {
# 105 + '\\' => {
# |