Rust

Rust

Made by DeepSource

Unnecessary double parentheses RS-C1000

Anti-pattern
Minor
Autofix

Extra parentheses increase expression nesting without adding meaning. They make code harder to read.

Remove extra parentheses if any.

Bad practice

fn xy() {
    ((2, 3))
}

Recommended

fn xy() {
    (2, 3)
}