From 06a4c5e2d5cb5e9439dbbf416bd91c47bd9eefee Mon Sep 17 00:00:00 2001 From: Bheesham Persaud Date: Tue, 15 Nov 2016 00:42:46 -0500 Subject: [PATCH] Remove references to EasyFramed and easy module. --- src/io/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/io/mod.rs b/src/io/mod.rs index 1b7f676e1..eccafb02f 100644 --- a/src/io/mod.rs +++ b/src/io/mod.rs @@ -156,9 +156,9 @@ pub trait Io: io::Read + io::Write { /// value that indicates "would block" the current future's task is arranged to /// receive a notification when the method would otherwise not indicate that it /// would block. -/// +// /// For a sample implementation of `FramedIo` you can take a look at the -/// `EasyFramed` type in the `easy` module of htis crate. +/// `Framed` type in the `frame` module of this crate. #[doc(hidden)] #[deprecated(since = "0.1.1", note = "replaced by Sink + Stream")] pub trait FramedIo {