Skip to content

Commit 395cdf0

Browse files
authored
Fix backticks in RUF021 docs (#9488)
The docs for this rule aren't generating properly: https://docs.astral.sh/ruff/rules/parenthesize-chained-operators/#why-is-this-bad. I assume this is the reason why!
1 parent 3daf6e1 commit 395cdf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ruff_linter/src/rules/ruff/rules/parenthesize_logical_operators.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ use crate::checkers::ast::Checker;
3232
///
3333
/// d, e, f = 0, 1, 2
3434
/// y = (d and e) or f
35-
/// ````
35+
/// ```
3636
#[violation]
3737
pub struct ParenthesizeChainedOperators;
3838

0 commit comments

Comments
 (0)