Fix typo (#8735) · astral-sh/ruff@4c86b15 (original) (raw)
File tree
1 file changed
lines changed
- crates/ruff_linter/src/rules/pylint/rules
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -9,8 +9,8 @@ use crate::checkers::ast::Checker; | ||
9 | 9 | /// ## What it does |
10 | 10 | /// Checks for classes with too many public methods |
11 | 11 | /// |
12 | -/// By default, this rule allows up to 20 statements, as configured by the | |
13 | -/// [`pylint.max-public-methods`] option. | |
12 | +/// By default, this rule allows up to 20 public methods, as configured by | |
13 | +/// the [`pylint.max-public-methods`] option. | |
14 | 14 | /// |
15 | 15 | /// ## Why is this bad? |
16 | 16 | /// Classes with many public methods are harder to understand |