diff --git a/crates/ruff_linter/src/rules/pylint/rules/too_many_public_methods.rs b/crates/ruff_linter/src/rules/pylint/rules/too_many_public_methods.rs index c484c3ea09..26fca2d078 100644 --- a/crates/ruff_linter/src/rules/pylint/rules/too_many_public_methods.rs +++ b/crates/ruff_linter/src/rules/pylint/rules/too_many_public_methods.rs @@ -19,7 +19,7 @@ use crate::checkers::ast::Checker; /// Instead, consider refactoring the class into separate classes. /// /// ## Example -/// Assuming that `pylint.max-public-settings` is set to 5: +/// Assuming that `lint.pylint.max-public-methods` is set to 5: /// ```python /// class Linter: /// def __init__(self):