diff options
| author | llogiq <bogusandre@gmail.com> | 2020-12-21 09:18:30 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-21 09:18:30 +0100 |
| commit | 0d6c128bfd41b61f246f603cfcd9ee4fc97ca3a0 (patch) | |
| tree | f1b5725eb908c95a8de236055eea083904ec896f | |
| parent | 7e641c8be774bba047d7d9ee57455957fd4e2a3b (diff) | |
| download | rust-0d6c128bfd41b61f246f603cfcd9ee4fc97ca3a0.tar.gz rust-0d6c128bfd41b61f246f603cfcd9ee4fc97ca3a0.zip | |
Update clippy_lints/src/from_over_into.rs
Co-authored-by: Takayuki Nakata <f.seasons017@gmail.com>
| -rw-r--r-- | clippy_lints/src/from_over_into.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/from_over_into.rs b/clippy_lints/src/from_over_into.rs index 083101ab1c6..1e7e5f53cc2 100644 --- a/clippy_lints/src/from_over_into.rs +++ b/clippy_lints/src/from_over_into.rs @@ -71,7 +71,7 @@ impl LateLintPass<'_> for FromOverInto { cx, FROM_OVER_INTO, item.span, - "An implementation of `From` is preferred since it gives you `Into<_>` for free where the reverse isn't true.", + "an implementation of `From` is preferred since it gives you `Into<_>` for free where the reverse isn't true", None, "consider to implement `From` instead", ); |
