Fixed same_name_method description

This commit is contained in:
vallentin 2021-12-02 18:07:28 +01:00
parent 392b0c5c25
commit f26821c969
No known key found for this signature in database
GPG key ID: C520C0734A50934A
2 changed files with 8 additions and 8 deletions

View file

@ -11,7 +11,7 @@ use std::collections::{BTreeMap, BTreeSet};
declare_clippy_lint! { declare_clippy_lint! {
/// ### What it does /// ### What it does
/// It lints if a struct has two method with same time: /// It lints if a struct has two methods with the same name:
/// one from a trait, another not from trait. /// one from a trait, another not from trait.
/// ///
/// ### Why is this bad? /// ### Why is this bad?
@ -100,7 +100,7 @@ impl<'tcx> LateLintPass<'tcx> for SameNameMethod {
cx, cx,
SAME_NAME_METHOD, SAME_NAME_METHOD,
*impl_span, *impl_span,
"method's name is same to an existing method in a trait", "method's name is the same as an existing method in a trait",
|diag| { |diag| {
diag.span_note( diag.span_note(
trait_method_span, trait_method_span,
@ -139,7 +139,7 @@ impl<'tcx> LateLintPass<'tcx> for SameNameMethod {
cx, cx,
SAME_NAME_METHOD, SAME_NAME_METHOD,
impl_span, impl_span,
"method's name is same to an existing method in a trait", "method's name is the same as an existing method in a trait",
|diag| { |diag| {
// TODO should we `span_note` on every trait? // TODO should we `span_note` on every trait?
// iterate on trait_spans? // iterate on trait_spans?

View file

@ -1,4 +1,4 @@
error: method's name is same to an existing method in a trait error: method's name is the same as an existing method in a trait
--> $DIR/same_name_method.rs:20:13 --> $DIR/same_name_method.rs:20:13
| |
LL | fn foo() {} LL | fn foo() {}
@ -11,7 +11,7 @@ note: existing `foo` defined here
LL | fn foo() {} LL | fn foo() {}
| ^^^^^^^^^^^ | ^^^^^^^^^^^
error: method's name is same to an existing method in a trait error: method's name is the same as an existing method in a trait
--> $DIR/same_name_method.rs:44:13 --> $DIR/same_name_method.rs:44:13
| |
LL | fn foo() {} LL | fn foo() {}
@ -23,7 +23,7 @@ note: existing `foo` defined here
LL | fn foo() {} LL | fn foo() {}
| ^^^^^^^^^^^ | ^^^^^^^^^^^
error: method's name is same to an existing method in a trait error: method's name is the same as an existing method in a trait
--> $DIR/same_name_method.rs:58:13 --> $DIR/same_name_method.rs:58:13
| |
LL | fn foo() {} LL | fn foo() {}
@ -35,7 +35,7 @@ note: existing `foo` defined here
LL | impl T1 for S {} LL | impl T1 for S {}
| ^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^
error: method's name is same to an existing method in a trait error: method's name is the same as an existing method in a trait
--> $DIR/same_name_method.rs:70:13 --> $DIR/same_name_method.rs:70:13
| |
LL | fn foo() {} LL | fn foo() {}
@ -47,7 +47,7 @@ note: existing `foo` defined here
LL | impl T1 for S {} LL | impl T1 for S {}
| ^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^
error: method's name is same to an existing method in a trait error: method's name is the same as an existing method in a trait
--> $DIR/same_name_method.rs:34:13 --> $DIR/same_name_method.rs:34:13
| |
LL | fn clone() {} LL | fn clone() {}