Task #124951 - fixed.err

back to task #124951
download
Error: CLIPPY_WARNING:
crates/goose/src/providers/utils.rs:580:17: warning: this `if` can be collapsed into the outer `match`
#      |
#  580 | /                 if closers.last() == Some(&c) {
#  581 | |                     closers.pop();
#  582 | |                 }
#      | |_________________^
#      |
#      = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.96.0/index.html#collapsible_match
#  help: collapse nested if block
#      |
#  579 ~             '}' | ']'
#  580 ~                 if closers.last() == Some(&c) => {
#  581 |                     closers.pop();
#  582 ~                 }
#      |