From 0655a8bffd0534b687b1c9b1667030b5dee69b5f Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 8 Mar 2023 12:26:11 -0500 Subject: fix docs --- src/writer.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/writer.rs') diff --git a/src/writer.rs b/src/writer.rs index 6e52db1..44a66e2 100644 --- a/src/writer.rs +++ b/src/writer.rs @@ -1,13 +1,13 @@ use tokio::io::AsyncWriteExt as _; -/// Writes ttyrec frames to a [`futures_lite::io::AsyncWrite`] instance. +/// Writes ttyrec frames to a [`tokio::io::AsyncWrite`] instance. pub struct Writer { output: T, creator: crate::Creator, } impl Writer { - /// Creates a new [`Writer`](Self) from a [`futures_lite::io::AsyncWrite`] + /// Creates a new [`Writer`](Self) from a [`tokio::io::AsyncWrite`] /// instance. pub fn new(output: T) -> Self { Self { -- cgit v1.2.3-54-g00ecf