]> git.lizzy.rs Git - rust.git/blobdiff - src/liballoc/fmt.rs
Remove recommendation about idiomatic syntax for Arc::Clone
[rust.git] / src / liballoc / fmt.rs
index d2ba9b001916c572e142fedfbc6d312842928cb0..68cbc366d7bc2a25bb77e9eaff2761c5a34dd559 100644 (file)
 //! * `^` - the argument is center-aligned in `width` columns
 //! * `>` - the argument is right-aligned in `width` columns
 //!
-//! Note that alignment may not be implemented by some types. A good way
-//! to ensure padding is applied is to format your input, then use this
-//! resulting string to pad your output.
+//! Note that alignment may not be implemented by some types. In particular, it
+//! is not generally implemented for the `Debug` trait.  A good way to ensure
+//! padding is applied is to format your input, then use this resulting string
+//! to pad your output.
 //!
 //! ## Sign/`#`/`0`
 //!