Merge pull request #131 from sfackler/patch-1

`Encode`/`Decode` -> `Codec` in docs
This commit is contained in:
Alex Crichton
2016-12-19 22:28:49 -08:00
committed by GitHub
+1 -1
View File
@@ -258,7 +258,7 @@ pub trait Codec {
}
/// A unified `Stream` and `Sink` interface to an underlying `Io` object, using
/// the `Encode` and `Decode` traits to encode and decode frames.
/// the `Codec` trait to encode and decode frames.
///
/// You can acquire a `Framed` instance by using the `Io::framed` adapter.
pub struct Framed<T, C> {