diff --git a/crates/ruff_linter/src/rules/ruff/rules/parenthesize_logical_operators.rs b/crates/ruff_linter/src/rules/ruff/rules/parenthesize_logical_operators.rs index 4a96af1cdf4a3..04e140bf360bf 100644 --- a/crates/ruff_linter/src/rules/ruff/rules/parenthesize_logical_operators.rs +++ b/crates/ruff_linter/src/rules/ruff/rules/parenthesize_logical_operators.rs @@ -32,7 +32,7 @@ use crate::checkers::ast::Checker; /// /// d, e, f = 0, 1, 2 /// y = (d and e) or f -/// ```` +/// ``` #[violation] pub struct ParenthesizeChainedOperators;