diff --git a/examples/color.rs b/examples/color.rs index 16071be..72c521d 100644 --- a/examples/color.rs +++ b/examples/color.rs @@ -6,5 +6,5 @@ fn main() { println!("{}Red", color::Fg(color::Red)); println!("{}Blue", color::Fg(color::Blue)); println!("{}Blue'n'Bold{}", style::Bold, style::Reset); - println!("{}Just plain italic", style::Italic); + println!("{}Just plain italic{}", style::Italic, style::Reset); }