We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
as _
1 parent 589db1f commit ae937ccCopy full SHA for ae937cc
library/core/src/macros/mod.rs
@@ -457,7 +457,8 @@ macro_rules! r#try {
457
///
458
/// A module can import both `std::fmt::Write` and `std::io::Write` and call `write!` on objects
459
/// implementing either, as objects do not typically implement both. However, the module must
460
-/// import the traits qualified so their names do not conflict:
+/// avoid conflict between the trait names, such as by importing them as `_` or otherwise renaming
461
+/// them:
462
463
/// ```
464
/// use std::fmt::Write as _;
0 commit comments