about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--book/src/development/trait_checking.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/src/development/trait_checking.md b/book/src/development/trait_checking.md
index cee4b0df498..fb263922cf8 100644
--- a/book/src/development/trait_checking.md
+++ b/book/src/development/trait_checking.md
@@ -76,7 +76,7 @@ If neither diagnostic item nor a language item is available, we can use
 [`clippy_utils::paths`][paths] with the `match_trait_method` to determine trait
 implementation.
 
-> **Note**: This approach should be avoided if possible, the best thing to do would be to make a PR to [`rust-lang/rust`][rust].
+> **Note**: This approach should be avoided if possible, the best thing to do would be to make a PR to [`rust-lang/rust`][rust] adding a diagnostic item.
 
 Below, we check if the given `expr` implements the `Iterator`'s trait method `cloned` :