diff --git a/clippy_lints/src/use_self.rs b/clippy_lints/src/use_self.rs index 5a048e1ce43b..23d0ab090201 100644 --- a/clippy_lints/src/use_self.rs +++ b/clippy_lints/src/use_self.rs @@ -43,7 +43,7 @@ declare_clippy_lint! { /// } /// ``` pub USE_SELF, - pedantic, + nursery, "Unnecessary structure name repetition whereas `Self` is applicable" } diff --git a/src/lintlist/mod.rs b/src/lintlist/mod.rs index e5d8f2d0c1a8..5b08571c2588 100644 --- a/src/lintlist/mod.rs +++ b/src/lintlist/mod.rs @@ -2193,7 +2193,7 @@ pub const ALL_LINTS: [Lint; 338] = [ }, Lint { name: "use_self", - group: "pedantic", + group: "nursery", desc: "Unnecessary structure name repetition whereas `Self` is applicable", deprecation: None, module: "use_self",