about summary refs log tree commit diff
diff options
context:
space:
mode:
authorllogiq <bogusandre@gmail.com>2020-12-21 09:18:30 +0100
committerGitHub <noreply@github.com>2020-12-21 09:18:30 +0100
commit0d6c128bfd41b61f246f603cfcd9ee4fc97ca3a0 (patch)
treef1b5725eb908c95a8de236055eea083904ec896f
parent7e641c8be774bba047d7d9ee57455957fd4e2a3b (diff)
downloadrust-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.rs2
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",
                 );