diff --git a/crates/ruff_linter/src/rules/pyflakes/rules/starred_expressions.rs b/crates/ruff_linter/src/rules/pyflakes/rules/starred_expressions.rs index ff1c00c57a..b7566b7311 100644 --- a/crates/ruff_linter/src/rules/pyflakes/rules/starred_expressions.rs +++ b/crates/ruff_linter/src/rules/pyflakes/rules/starred_expressions.rs @@ -11,8 +11,8 @@ use crate::{Violation, checkers::ast::Checker}; /// ## Why is this bad? /// In assignment statements, starred expressions can be used to unpack iterables. /// -/// In Python 3, no more than 1 << 8 assignments are allowed before a starred -/// expression, and no more than 1 << 24 expressions are allowed after a starred +/// In Python 3, no more than `1 << 8` assignments are allowed before a starred +/// expression, and no more than `1 << 24` expressions are allowed after a starred /// expression. /// /// ## References