Skip to content

Commit ec013ae

Browse files
authored
chore: minor improvement for docs (#212)
Signed-off-by: spuradage <[email protected]>
1 parent 5bc198b commit ec013ae

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Coloring terminal so simple, you already know how to do it!
1414
"truecolor from tuple".custom_color((0, 255, 136));
1515
"background truecolor from tuple".on_custom_color((0, 255, 136));
1616
"bright colors are welcome as well".on_bright_blue().bright_red();
17-
"you can also make bold comments".bold();
17+
"you can also make bold text".bold();
1818
println!("{} {} {}", "or use".cyan(), "any".italic().yellow(), "string type".cyan());
1919
"or change advice. This is red".yellow().blue().red();
2020
"or clear things up. This is default color and style".red().bold().clear();

src/control.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ mod specs {
327327
});
328328

329329
ctx.specify("using a manual override", |ctx| {
330-
ctx.it("shoud colorize if manual_override is true, but clicolor is false and clicolor_force also false", |()| {
330+
ctx.it("should colorize if manual_override is true, but clicolor is false and clicolor_force also false", |()| {
331331
let colorize_control = ShouldColorize {
332332
clicolor: false,
333333
clicolor_force: None,

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//! "this is also red on blue".on_blue().red();
99
//! "you can use truecolor values too!".truecolor(0, 255, 136);
1010
//! "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();
1212
//! println!("{} {} {}", "or use".cyan(), "any".italic().yellow(), "string type".cyan());
1313
//! "or change advice. This is red".yellow().blue().red();
1414
//! "or clear things up. This is default color and style".red().bold().clear();
@@ -25,7 +25,7 @@
2525
//!
2626
//! Note: The methods of [`Colorize`], when used on [`str`]'s, return
2727
//! [`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
2929
//! modify them.
3030
#![warn(missing_docs)]
3131

@@ -61,7 +61,7 @@ pub use style::{Style, Styles};
6161
/// [`Colorize`] for more.
6262
///
6363
/// 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
6565
/// underline), and then use it to create formatted strings that print
6666
/// to the console with the special styling applied.
6767
///

0 commit comments

Comments
 (0)