From 177953b1833ae8e913d281eea0c248b7af1b1ff1 Mon Sep 17 00:00:00 2001 From: Timon Date: Sat, 27 Jan 2018 19:59:33 +0100 Subject: [PATCH] Update README.md Code mistake edited --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1828194..fff0df8 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ For detailed examples of all crossterm functionalities check the [examples](http // Set background Color from RGB println!("RGB (10,10,10): \t {}", paint(" ").on(Color::Rgb {r: 10, g: 10, b: 10})); // Set background Color from RGB - println!("RGB (10,10,10): \t {}", paint(" ").on(Color::AnsiValue(50))); + println!("ANSI value (50): \t {}", paint(" ").on(Color::AnsiValue(50))); // Use attributes to syle the font. println!("{}", paint("Normal text"));