From 1117fff612703ac07f081c0801f1f225932936b1 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 5 Dec 2021 04:06:28 -0500 Subject: fix docs --- src/reader.rs | 4 ++-- src/writer.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/reader.rs b/src/reader.rs index 4939eb9..3d963f1 100644 --- a/src/reader.rs +++ b/src/reader.rs @@ -1,6 +1,6 @@ use futures_lite::io::AsyncReadExt as _; -/// Reads ttyrec frames from a [`futures::io::AsyncRead`] instance. +/// Reads ttyrec frames from a [`futures_lite::io::AsyncRead`] instance. pub struct Reader { input: T, parser: crate::Parser, @@ -8,7 +8,7 @@ pub struct Reader { } impl Reader { - /// Creates a new [`Reader`](Self) from a [`futures::io::AsyncRead`] + /// Creates a new [`Reader`](Self) from a [`futures_lite::io::AsyncRead`] /// instance. pub fn new(input: T) -> Self { Self { diff --git a/src/writer.rs b/src/writer.rs index 0a94586..9eb3aaa 100644 --- a/src/writer.rs +++ b/src/writer.rs @@ -1,13 +1,13 @@ use futures_lite::io::AsyncWriteExt as _; -/// Writes ttyrec frames to a [`futures::io::AsyncWrite`] instance. +/// Writes ttyrec frames to a [`futures_lite::io::AsyncWrite`] instance. pub struct Writer { output: T, creator: crate::Creator, } impl Writer { - /// Creates a new [`Writer`](Self) from a [`futures::io::AsyncWrite`] + /// Creates a new [`Writer`](Self) from a [`futures_lite::io::AsyncWrite`] /// instance. pub fn new(output: T) -> Self { Self { -- cgit v1.2.3-54-g00ecf