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!
This commit is contained in:
Alex Waygood 2024-01-12 09:00:44 +00:00 committed by GitHub
parent 3daf6e1b6d
commit 395cdf04e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;