Skip to content

Commit 4c86b15

Browse files
authored
Fix typo (#8735)
1 parent e2109c1 commit 4c86b15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/ruff_linter/src/rules/pylint/rules/too_many_public_methods.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ use crate::checkers::ast::Checker;
99
/// ## What it does
1010
/// Checks for classes with too many public methods
1111
///
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.
1414
///
1515
/// ## Why is this bad?
1616
/// Classes with many public methods are harder to understand

0 commit comments

Comments
 (0)