|
8 | 8 | //! "this is also red on blue".on_blue().red(); |
9 | 9 | //! "you can use truecolor values too!".truecolor(0, 255, 136); |
10 | 10 | //! "background truecolor also works :)".on_truecolor(135, 28, 167); |
11 | | -//! "you can also make bold comments".bold(); |
| 11 | +//! "you can also make bold text".bold(); |
12 | 12 | //! println!("{} {} {}", "or use".cyan(), "any".italic().yellow(), "string type".cyan()); |
13 | 13 | //! "or change advice. This is red".yellow().blue().red(); |
14 | 14 | //! "or clear things up. This is default color and style".red().bold().clear(); |
|
25 | 25 | //! |
26 | 26 | //! Note: The methods of [`Colorize`], when used on [`str`]'s, return |
27 | 27 | //! [`ColoredString`]'s. See [`ColoredString`] to learn more about them and |
28 | | -//! what you can do with them beyond continue to use [`Colorize`] to further |
| 28 | +//! what you can do with them beyond continuing to use [`Colorize`] to further |
29 | 29 | //! modify them. |
30 | 30 | #![warn(missing_docs)] |
31 | 31 |
|
@@ -61,7 +61,7 @@ pub use style::{Style, Styles}; |
61 | 61 | /// [`Colorize`] for more. |
62 | 62 | /// |
63 | 63 | /// The primary usage of `ColoredString`'s is as a way to take text, |
64 | | -/// apply colors and miscillaneous styling to it (such as bold or |
| 64 | +/// apply colors and miscellaneous styling to it (such as bold or |
65 | 65 | /// underline), and then use it to create formatted strings that print |
66 | 66 | /// to the console with the special styling applied. |
67 | 67 | /// |
|
0 commit comments