diff --git a/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/whitespace_around_keywords.rs b/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/whitespace_around_keywords.rs index 48b87acda7..af7a415275 100644 --- a/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/whitespace_around_keywords.rs +++ b/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/whitespace_around_keywords.rs @@ -43,12 +43,12 @@ impl AlwaysFixableViolation for MultipleSpacesAfterKeyword { /// /// ## Example /// ```python -/// True and False +/// x and y /// ``` /// /// Use instead: /// ```python -/// True and False +/// x and y /// ``` #[derive(ViolationMetadata)] pub(crate) struct MultipleSpacesBeforeKeyword;