[ty] Fix override of final method summary (#21681)

This commit is contained in:
Matthew Mckee
2025-11-28 16:18:22 +00:00
committed by GitHub
parent 0084e94f78
commit b5b4917d7f
2 changed files with 2 additions and 2 deletions

View File

@@ -1636,7 +1636,7 @@ declare_lint! {
/// def foo(self): ... # Error raised here
/// ```
pub(crate) static OVERRIDE_OF_FINAL_METHOD = {
summary: "detects subclasses of final classes",
summary: "detects overrides of final methods",
status: LintStatus::stable("0.0.1-alpha.29"),
default_level: Level::Error,
}