We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd005c1 commit a7299c4Copy full SHA for a7299c4
clippy_lints/src/from_over_into.rs
@@ -71,9 +71,9 @@ impl LateLintPass<'_> for FromOverInto {
71
cx,
72
FROM_OVER_INTO,
73
item.span,
74
- "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.",
75
None,
76
- "consider to implement From instead",
+ "consider to implement `From` instead",
77
);
78
}
79
0 commit comments