We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
missing_copy_implementations
missing_debug_implementations
1 parent 18bfe5d commit 980b392Copy full SHA for 980b392
compiler/rustc_lint/src/builtin.rs
@@ -611,7 +611,7 @@ impl<'tcx> LateLintPass<'tcx> for MissingDoc {
611
612
declare_lint! {
613
/// The `missing_copy_implementations` lint detects potentially-forgotten
614
- /// implementations of [`Copy`].
+ /// implementations of [`Copy`] for public types.
615
///
616
/// [`Copy`]: https://doc.rust-lang.org/std/marker/trait.Copy.html
617
@@ -729,7 +729,7 @@ impl<'tcx> LateLintPass<'tcx> for MissingCopyImplementations {
729
730
731
/// The `missing_debug_implementations` lint detects missing
732
- /// implementations of [`fmt::Debug`].
+ /// implementations of [`fmt::Debug`] for public types.
733
734
/// [`fmt::Debug`]: https://doc.rust-lang.org/std/fmt/trait.Debug.html
735
0 commit comments