From 24d941d67622d13e36a90cf7aee8de5df87f288e Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 19 Dec 2016 22:19:39 -0800 Subject: [PATCH] `Encode`/`Decode` -> `Codec` in docs --- src/io/frame.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/frame.rs b/src/io/frame.rs index cef835790..0f3748830 100644 --- a/src/io/frame.rs +++ b/src/io/frame.rs @@ -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 {