aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/basic.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/basic.rs b/examples/basic.rs
index 49f56bc..624292f 100644
--- a/examples/basic.rs
+++ b/examples/basic.rs
@@ -15,7 +15,7 @@ async fn run(
tm.set_fgcolor(textmode::color::GREEN);
tm.write_str("bar");
tm.move_to(11, 11);
- tm.set_fgcolor(vt100::Color::Default);
+ tm.set_fgcolor(textmode::Color::Default);
tm.write_str("baz");
input.read_key().await?;
tm.refresh().await?;
@@ -48,7 +48,7 @@ fn main() {
tm.set_fgcolor(textmode::color::GREEN);
tm.write_str("bar");
tm.move_to(11, 11);
- tm.set_fgcolor(vt100::Color::Default);
+ tm.set_fgcolor(textmode::Color::Default);
tm.write_str("baz");
input.read_key().unwrap();
tm.refresh().unwrap();