From 33613d4a93bf4c0a68a38ab492688305c8e6673d Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 7 Mar 2021 18:40:51 -0500 Subject: cleanup --- examples/async.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'examples') diff --git a/examples/async.rs b/examples/async.rs index b97ad24..af5ccb5 100644 --- a/examples/async.rs +++ b/examples/async.rs @@ -1,6 +1,6 @@ use textmode::Textmode as _; -async fn run(tm: &mut textmode::r#async::Output) -> std::io::Result<()> { +async fn run(tm: &mut textmode::Output) -> std::io::Result<()> { tm.move_to(5, 5); tm.write_str("foo"); smol::Timer::after(std::time::Duration::from_secs(2)).await; @@ -21,8 +21,7 @@ async fn run(tm: &mut textmode::r#async::Output) -> std::io::Result<()> { fn main() { smol::block_on(async { - let (mut tm, _guard) = - textmode::r#async::Output::new().await.unwrap(); + let (mut tm, _guard) = textmode::Output::new().await.unwrap(); let e = run(&mut tm).await; e.unwrap(); }); -- cgit v1.2.3-54-g00ecf